Last active
November 1, 2015 00:49
-
-
Save ruph/964df57312ef577eb5da to your computer and use it in GitHub Desktop.
zsh settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export EDITOR=vim | |
# Lines configured by zsh-newuser-install | |
HISTFILE=~/.histfile | |
HISTSIZE=10240 | |
SAVEHIST=10240 | |
setopt appendhistory extendedglob nomatch | |
unsetopt beep | |
bindkey -e | |
WORDCHARS=${WORDCHARS//\/} | |
# End of lines configured by zsh-newuser-install | |
# The following lines were added by compinstall | |
zstyle :compinstall filename '/home/ruph/.zshrc' | |
autoload -Uz compinit | |
compinit | |
# End of lines added by compinstall | |
autoload -U colors && colors | |
PROMPT="%{$fg[red]%}%n%{$reset_color%}@%{$fg[red]%}%m %{$fg[yellow]%}%1~ %{$reset_color%}%# " | |
alias vi='vim' | |
export EDITOR=vi | |
umask 002 | |
# Good for Emacs | |
TERM=xterm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment