diff options
-rw-r--r-- | etc/alias/short | 2 | ||||
-rw-r--r-- | etc/completion | 5 | ||||
-rw-r--r-- | etc/modules | 6 | ||||
-rw-r--r-- | etc/variables | 12 |
4 files changed, 23 insertions, 2 deletions
diff --git a/etc/alias/short b/etc/alias/short index 9dbd428..4ee3e5f 100644 --- a/etc/alias/short +++ b/etc/alias/short @@ -62,7 +62,7 @@ alias fehf='feh -Tfull' # Fullscreen alias fehfr='feh -Tfull --recursive' alias fehi='feh .fehindex.jpg' alias fehj='feh -Tjust' # Screensaver-like -alias fejr='feh -Tjust --recursive' +alias fehjr='feh -Tjust --recursive' for i in {5,10,15,20}; { alias fehj$i='feh -Tjust'$i alias fehf$i='feh -Tfull'$i diff --git a/etc/completion b/etc/completion index f3d0141..ce57c85 100644 --- a/etc/completion +++ b/etc/completion @@ -1,7 +1,10 @@ ## vim:ft=zsh +zstyle :compinstall filename "$HOME/.zshrc" linux: zstyle ':completion:*' list-colors $(dircolors $HOME/packages/zsh/etc/dircolors | head -n 1 | sed -r 's/LS_COLORS=|;$//g') # Mark the current selection when tabbing through possible completions zstyle ':completion:*' menu select=1 # Also complete uppercase names with lowercase -zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}' '' +zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}' '' + +_hosts() { compadd alpha beta gamma kraftwerk delta epsilon zeta eta saviour theta iota kappa nemesis lambda;} diff --git a/etc/modules b/etc/modules new file mode 100644 index 0000000..e9446ee --- /dev/null +++ b/etc/modules @@ -0,0 +1,6 @@ +## vim:ft=zsh +autoload -Uz compinit +autoload colors +autoload zargs +compinit -C +colors diff --git a/etc/variables b/etc/variables new file mode 100644 index 0000000..20cb06f --- /dev/null +++ b/etc/variables @@ -0,0 +1,12 @@ +## vim:ft=zsh +HISTFILE=~/.histfile +HISTSIZE=10000 +SAVEHIST=$HISTSIZE +DIRSTACKSIZE=20 +export PATH=$HOME/bin:$PATH +export EDITOR==vim +export MPD_HOST=saviour +linux: export LANG=en_US.UTF-8 +openbsd: export PKG_PATH="ftp://ftp.freenet.de/pub/ftp.openbsd.org/pub/OpenBSD/`uname -r`/packages/`machine -a`/:ftp://openbsd.ftp.fu-berlin.de/pub/OpenBSD/`uname -r`/packages/`machine -a`/" +export HOST +linux: [ -z "$MANPATH" ] && export MANPATH=$(manpath):$HOME/packages/.collected/man |