From 5733db778edd8e51449681c9a71d4c174f7a7081 Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Mon, 23 May 2022 01:19:09 +0200 Subject: [PATCH] Set everything to nvim instead of vim. --- zsh/.zshrc | 2 +- zsh/aliases.zsh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index cf23a44..d2599bb 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -10,7 +10,7 @@ setopt HIST_REDUCE_BLANKS setopt SHARE_HISTORY export PATH=~/.local/bin:$PATH -export EDITOR=vim +export EDITOR=nvim export MANPAGER="nvim +Man!" tabs 2 diff --git a/zsh/aliases.zsh b/zsh/aliases.zsh index 8df4607..d044ca7 100644 --- a/zsh/aliases.zsh +++ b/zsh/aliases.zsh @@ -17,7 +17,7 @@ fi function ud() { wd dots && git pull for i in $XDG_DATA_HOME/repos/zsh_modules/*; do sh -c "cd $i && git pull"; done - vim -c "PlugUpdate" -c "PlugClean" -c "q" -c "q" + nvim -c "PlugUpdate" -c "PlugClean" -c "q" -c "q" rm -rf ~/go cd }