More fixes.
This commit is contained in:
parent
6467a4e60e
commit
75f5604243
4 changed files with 11 additions and 7 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,4 +2,5 @@ rcs/vim/.netrwhist
|
|||
xsrf/cache
|
||||
xsrf/certificates
|
||||
xsrf/cookies.txt
|
||||
rcmain
|
||||
|
||||
|
|
|
@ -18,6 +18,7 @@ export_loop(){
|
|||
# Standard variables.
|
||||
export_loop \
|
||||
ENV '$HOME/.shrc' \
|
||||
DEV '$HOME/dev' \
|
||||
LIB '$HOME/lib' \
|
||||
IMG '$HOME/img' \
|
||||
SND '$HOME/snd' \
|
||||
|
@ -25,6 +26,10 @@ export_loop \
|
|||
VID '$HOME/vid' \
|
||||
LOAD '$HOME/load' \
|
||||
TXT '$HOME/txt' \
|
||||
SHR '$HOME/shr' \
|
||||
MNT '$HOME/mnt' \
|
||||
TMP '$HOME/tmp' \
|
||||
EXE '$HOME/exe' \
|
||||
SHPROMPT '"% "' \
|
||||
PS1 '"$SHPROMPT"' \
|
||||
SUDO_PROMPT '"#"' \
|
||||
|
@ -33,15 +38,12 @@ export_loop \
|
|||
GIT_EDITOR '$VISUAL' \
|
||||
PAGER 'less' \
|
||||
MANPAGER '$PAGER' \
|
||||
MAN '$SHR/man' \
|
||||
PROFILE '$HOME/.profile' \
|
||||
TMPL '$HOME/tmpl' \
|
||||
APP '$HOME/app' \
|
||||
ENVDIR '$HOME/env' \
|
||||
SETENV '$LIB/setenv/sh' \
|
||||
TMP '$HOME/tmp' \
|
||||
SHR '$HOME/shr' \
|
||||
MNT '$HOME/mnt' \
|
||||
EXE '$EXE/bin' \
|
||||
GOPATH '$APP/go' \
|
||||
GOEXE '$GOPATH/bin'\
|
||||
VPATH '$DEV/v'\
|
||||
|
|
5
profile
5
profile
|
@ -1,4 +1,4 @@
|
|||
# jien's rc configuration file.
|
||||
# k1574's rc configuration file.
|
||||
|
||||
prompt = '% ' # The simplest possible prompt.
|
||||
fn % {
|
||||
|
@ -21,7 +21,7 @@ app = $home/app # Program installation directory.
|
|||
env = $home/env # Environment setting directory.
|
||||
dev = $home/dev # Development.
|
||||
#etc = $local/etc # Configuration files for any system.
|
||||
exe = $home/bin # Executable binaries installation directory.
|
||||
exe = $home/exe # Executable binaries installation directory.
|
||||
tmp = $home/tmp # Temporary.
|
||||
shr = $home/shr # Share files for programs.
|
||||
man = $shr/man # Directory for manual pages. Are supposed to be written in plain text.
|
||||
|
@ -138,3 +138,4 @@ if(test -r $setenv){
|
|||
. $setenv
|
||||
setenv rc
|
||||
}
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
fn setenv {
|
||||
rc=$1
|
||||
mkdir -p $dirs
|
||||
mkdir -p $env
|
||||
# Variables.
|
||||
for(file in $env/$rc/var/* ){
|
||||
test -r $file && `{basename $file} = `{cat $file}
|
||||
|
|
Loading…
Reference in a new issue