diff options
Diffstat (limited to '')
-rw-r--r-- | .config/env | 2 | ||||
-rw-r--r-- | .config/zsh/alias.zsh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.config/env b/.config/env index b6ad41e..9aa97aa 100644 --- a/.config/env +++ b/.config/env @@ -15,7 +15,7 @@ export PATH="$HOME"/.local/bin:"$PATH":/usr/local/llvm10/bin:/usr/local/llvm11/bin # Apps -export EDITOR='emacsclient -t -a nvim' +export EDITOR="emacsclient -c -a nvim" export VISUAL="$EDITOR" export PAGER='less' export TERMINAL='st' diff --git a/.config/zsh/alias.zsh b/.config/zsh/alias.zsh index e079b5e..da4a312 100644 --- a/.config/zsh/alias.zsh +++ b/.config/zsh/alias.zsh @@ -88,7 +88,7 @@ vimbin() { cd $p return fi - nvim $sc + $VISUAL $sc cd $p } vimconf() { @@ -99,7 +99,7 @@ vimconf() { cd $p return fi - nvim $sc + $VISUAL $sc cd $p } pa() { |