diff options
author | Adrian Kummerlaender | 2016-05-28 16:50:37 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2016-05-28 16:50:37 +0200 |
commit | 5ce877c5bcd484a64c4457ace746013af977642f (patch) | |
tree | 6b0d6030037dc2ab9d812b055ea9e5dd9ca66c11 | |
parent | 6b43fc58ed42febd281c94b40454183232238438 (diff) | |
download | dotfiles-5ce877c5bcd484a64c4457ace746013af977642f.tar dotfiles-5ce877c5bcd484a64c4457ace746013af977642f.tar.gz dotfiles-5ce877c5bcd484a64c4457ace746013af977642f.tar.bz2 dotfiles-5ce877c5bcd484a64c4457ace746013af977642f.tar.lz dotfiles-5ce877c5bcd484a64c4457ace746013af977642f.tar.xz dotfiles-5ce877c5bcd484a64c4457ace746013af977642f.tar.zst dotfiles-5ce877c5bcd484a64c4457ace746013af977642f.zip |
Remove zsh config
-rw-r--r-- | zsh/.zshrc | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc deleted file mode 100644 index cb38775..0000000 --- a/zsh/.zshrc +++ /dev/null @@ -1,24 +0,0 @@ -setopt no_beep auto_cd complete_in_word correct rm_star_wait hist_ignore_all_dups share_history append_history extended_history -eval `dircolors` -PROMPT='%B%n:~#%b ' -RPROMPT='%/' -export EDITOR=vim -export PAGER=less - -autoload -U compinit && compinit -zstyle ':completion:*' menu select=1 -zstyle ':completion:*' completer _complete _correct _approximate - -HISTFILE=~/.zsh_history -SAVEHIST=10000000 -HISTSIZE=12000000 - -alias ls='ls --color=auto' -alias grep='grep --color' -alias evince='evince &> /dev/null' -alias svim='sudo vim' - -alias sdefi='find -iname \*.h | xargs grep $1' -alias simpl='find -iname \*.cc | xargs grep $1' -alias grepsearch='grep -iRnH "$@"' -alias psgrep='ps axuf | grep -v grep | grep "$@" -i --color=auto' |