install neovim
This commit is contained in:
parent
c12fe77a48
commit
6d34fe9903
3 changed files with 38 additions and 3 deletions
|
@ -36,7 +36,7 @@ zstyle ':completion:*' verbose true
|
|||
zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31'
|
||||
zstyle ':completion:*:kill:*' command 'ps -u $USER -o pid,%cpu,tty,cputime,cmd'
|
||||
|
||||
# Custom stuff
|
||||
# Git aliases
|
||||
alias gp='git push'
|
||||
alias gco='git checkout'
|
||||
alias gd='git diff'
|
||||
|
@ -51,3 +51,8 @@ alias gl='git log'
|
|||
. $HOME/.asdf/asdf.sh
|
||||
fpath=(${ASDF_DIR}/completions $fpath)
|
||||
autoload -Uz compinit && compinit
|
||||
|
||||
# For neovim
|
||||
PATH=$PATH:/usr/local
|
||||
alias vi='nvim'
|
||||
alias vim='nvim'
|
||||
|
|
Reference in a new issue