diff options
author | katherine <shmibs@shmibbles.me> | 2016-01-26 00:08:56 -0700 |
---|---|---|
committer | katherine <shmibs@shmibbles.me> | 2016-01-26 00:08:56 -0700 |
commit | 10718067ca38cc353163e1ba564ef716834480d2 (patch) | |
tree | e26a0198bdb5d3f46b636174b8c3696602e43988 | |
parent | 19298f6efcea91c13672df70abf976618e548d88 (diff) | |
download | dotfiles-10718067ca38cc353163e1ba564ef716834480d2.tar.gz |
actually run ~/.config/init/init.sh
-rw-r--r-- | .config/init/gen-zathurarc.sh | 2 | ||||
-rwxr-xr-x | .config/init/init.sh | 2 | ||||
-rw-r--r-- | .vimrc | 1 | ||||
-rw-r--r-- | .xinitrc | 3 | ||||
-rw-r--r-- | .zshrc-linux | 2 |
5 files changed, 7 insertions, 3 deletions
diff --git a/.config/init/gen-zathurarc.sh b/.config/init/gen-zathurarc.sh index b8f9169..576cebb 100644 --- a/.config/init/gen-zathurarc.sh +++ b/.config/init/gen-zathurarc.sh @@ -1,6 +1,6 @@ { -echo " +echo "\ set font \"$ttfont\" set highlight-color \"$bg_normal\" diff --git a/.config/init/init.sh b/.config/init/init.sh index 0d7ff58..c4a0ba2 100755 --- a/.config/init/init.sh +++ b/.config/init/init.sh @@ -1,4 +1,4 @@ #!/bin/bash source ~/.config/init/vars -source gen-zathurarc.sh +source ~/.config/init/gen-zathurarc.sh @@ -171,6 +171,7 @@ autocmd BufNewFile,BufRead *.tex set filetype=tex autocmd FileType asm call Settings_asm() autocmd FileType c call Settings_c() autocmd FileType coffee call Settings_coffee() +autocmd FileType conf call Settings_script() autocmd FileType cpp call Settings_c() autocmd FileType css call Settings_c() autocmd FileType d call Settings_c() @@ -1,3 +1,6 @@ +#initialise configs to auto-match themes +~/.config/init/init.sh + #merge Xresources if [ -s ~/.Xresources ] then diff --git a/.zshrc-linux b/.zshrc-linux index a510ac6..46d325f 100644 --- a/.zshrc-linux +++ b/.zshrc-linux @@ -5,7 +5,7 @@ alias grep='grep --color=auto' alias latex='latex -output-format=pdf' alias less='less -R' alias ls='ls --color=auto' -alias ll='ls -l --color=auto' +alias ll='ls -lh --color=auto' alias def='sdcv' alias dvd='mpv --deinterlace=yes dvd://' |