dotfiles/zsh/zshrc

20 lines
710 B
Bash
Raw Normal View History

2020-01-10 16:30:27 +01:00
autoload -U compinit && compinit
2020-01-10 17:56:45 +01:00
autoload -U promptinit && promptinit
2020-01-10 23:06:53 +01:00
setopt correct_all
zstyle ':completion:*' menu select
2020-02-02 19:51:12 +01:00
export CLICOLOR=1
2020-01-10 16:11:15 +01:00
alias ll='ls -lh'
2020-01-10 23:06:53 +01:00
2020-01-10 16:11:15 +01:00
source ~/.zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
source ~/.zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
2020-01-15 14:38:08 +01:00
source ~/.zsh/themes/powerlevel10k/powerlevel10k.zsh-theme
2020-01-15 14:27:20 +01:00
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
2020-02-01 17:58:00 +01:00
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
FZF_DEFAULT_COMMAND='git ls-files --cached --others --exclude-standard | fd'
2020-02-05 15:20:45 +01:00
FZF_DEFAULT_OPTS="-e --layout=reverse --height=40% --preview='bat --color=always --tabs=2 --style=plain --theme=\"Monokai Extended\" {}'"
2020-02-01 17:58:00 +01:00
2020-02-02 19:51:12 +01:00
[ -e ~/.zshrc.local ] && source ~/.zshrc.local