forked from logan/dotfiles
Added basic zshrc
This commit is contained in:
parent
46a4df27af
commit
2b337c1f18
2 changed files with 16 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -15,6 +15,7 @@
|
||||||
!.inputrc
|
!.inputrc
|
||||||
!.bashrc
|
!.bashrc
|
||||||
!.bash_profile
|
!.bash_profile
|
||||||
|
!.zshrc
|
||||||
!.profile
|
!.profile
|
||||||
!.pam_environment
|
!.pam_environment
|
||||||
!README.md
|
!README.md
|
||||||
|
|
15
.zshrc
Normal file
15
.zshrc
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
# Lines configured by zsh-newuser-install
|
||||||
|
HISTFILE=~/.histfile
|
||||||
|
HISTSIZE=10000
|
||||||
|
SAVEHIST=10000
|
||||||
|
unsetopt beep
|
||||||
|
bindkey -e
|
||||||
|
# End of lines configured by zsh-newuser-install
|
||||||
|
# The following lines were added by compinstall
|
||||||
|
zstyle :compinstall filename '/home/logan/.zshrc'
|
||||||
|
|
||||||
|
autoload -Uz compinit
|
||||||
|
compinit
|
||||||
|
# End of lines added by compinstall
|
||||||
|
|
||||||
|
PROMPT='%F{208}%n%F{reset}@%m:%F{32}[%d]$ %F{reset}'
|
Loading…
Reference in a new issue