diff options
author | Vasil ZLatanov <vasil.zlatanov@gmail.com> | 2014-05-20 09:25:15 +0200 |
---|---|---|
committer | Vasil ZLatanov <vasil.zlatanov@gmail.com> | 2014-05-20 09:25:15 +0200 |
commit | 5f42ac635624c8d7013c4dd8b6f9aa4bc5fa7f06 (patch) | |
tree | 05f3ce484b368712914a6e614bc10cbeb01d8a74 | |
parent | 238c9b5e2fdbf57f24582476159bc7e9e2b97dea (diff) | |
download | dotfiles-5f42ac635624c8d7013c4dd8b6f9aa4bc5fa7f06.tar.gz dotfiles-5f42ac635624c8d7013c4dd8b6f9aa4bc5fa7f06.tar.bz2 dotfiles-5f42ac635624c8d7013c4dd8b6f9aa4bc5fa7f06.zip |
fix .zshrc location to ~/.zshrc
-rw-r--r-- | zshrc | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -6,16 +6,18 @@ setopt appendhistory autocd extendedglob unsetopt beep bindkey -v zstyle ':completion:*' menu select -zstyle ':completion:*' format '%BCompleting %d%b' +#zstyle ':completion:*' format '%BCompleting %d%b' # End of lines configured by zsh-newuser-install # The following lines were added by compinstall zstyle :compinstall filename '/home/vasko/.zshrc' autoload -Uz compinit compinit +zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' \ + 'r:|[._-]=* r:|=*' 'l:|=* r:|=*' # End of lines added by compinstall -source .bash_aliases +source ~/.bash_aliases export PS1='%n@%m:%~%% ' |