15 lines
299 B
Bash
Executable file
15 lines
299 B
Bash
Executable file
# setup slimzsh
|
|
|
|
git clone --recursive https://github.com/changs/slimzsh.git ~/.slimzsh
|
|
|
|
cat <<EOF > $HOME/.zshrc
|
|
HISTSIZE=10000
|
|
SAVEHIST=10000
|
|
|
|
source "$HOME/.slimzsh/slim.zsh"
|
|
source /usr/share/doc/fzf/examples/key-bindings.zsh
|
|
alias vi=nvim
|
|
alias ls='ls --color=auto'
|
|
EOF
|
|
|
|
chsh -s /bin/zsh $USER
|