basic zsh setup
This commit is contained in:
parent
7717d7e9cf
commit
ac7282e765
2 changed files with 28 additions and 0 deletions
11
.zsh_plugins.txt
Normal file
11
.zsh_plugins.txt
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
# Completion
|
||||||
|
mattmc3/ez-compinit
|
||||||
|
zsh-users/zsh-completions kind:fpath path:src
|
||||||
|
|
||||||
|
# Other fish stuff
|
||||||
|
zsh-users/zsh-autosuggestions
|
||||||
|
zdharma-continuum/fast-syntax-highlighting kind:defer
|
||||||
|
zsh-users/zsh-history-substring-search
|
||||||
|
|
||||||
|
# History
|
||||||
|
joshskidmore/zsh-fzf-history-search
|
||||||
17
.zshrc
Normal file
17
.zshrc
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
# Created by newuser for 5.9
|
||||||
|
|
||||||
|
# Binds
|
||||||
|
bindkey '^H' backward-kill-word
|
||||||
|
bindkey '5~' kill-word
|
||||||
|
bindkey "^[[1;5C" forward-word
|
||||||
|
bindkey "^[[1;5D" backward-word
|
||||||
|
|
||||||
|
# History
|
||||||
|
HISTFILE=~/.zsh_history
|
||||||
|
HISTSIZE=999999999
|
||||||
|
SAVEHIST=$HISTSIZE
|
||||||
|
|
||||||
|
source ${ZDOTDIR:-~}/.antidote/antidote.zsh
|
||||||
|
antidote load
|
||||||
|
|
||||||
|
eval "$(starship init zsh)"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue