diff options
author | Urbain Vaes <urbain@vaes.uk> | 2016-04-07 15:07:13 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2016-04-07 15:07:13 +0100 |
commit | 9610f2882a877ad573a585de421dee9bf66abe78 (patch) | |
tree | 01f2212cadd7f508b8109aed9440f10fc98a3f51 | |
parent | 54e78d836da268dbe55db815e6d24c6aa42db450 (diff) |
Set nvim as default editor
-rw-r--r-- | zsh/alias | 2 | ||||
-rw-r--r-- | zsh/plugins | 1 | ||||
-rw-r--r-- | zsh/zshrc | 2 |
3 files changed, 4 insertions, 1 deletions
@@ -28,3 +28,5 @@ alias mca='make clean-all' # Tmux alias son="tmux set -g status on" alias soff="tmux set -g status off" + +unalias ag diff --git a/zsh/plugins b/zsh/plugins index 116c694..d1f5bad 100644 --- a/zsh/plugins +++ b/zsh/plugins @@ -31,6 +31,7 @@ if ! zgen saved; then # Other plugins zgen load rupa/z + zgen load supercrabtree/k zgen load djui/alias-tips zgen load tarruda/zsh-autosuggestions zgen load joel-porquet/zsh-dircolors-solarized @@ -17,7 +17,7 @@ bindkey '^N' history-beginning-search-forward export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/bin/core_perl:/home/urbain/bin" # Editor -export EDITOR=/usr/bin/vim +export EDITOR=/usr/bin/nvim # Fix tmux colors if [[ -n ${TMUX} && -n ${commands[tmux]} ]];then |