From b8ae03b3af3cb7f491e4dd0161a7d5062139a44e Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Fri, 10 May 2024 02:40:24 -0500 Subject: [PATCH] refactor(zsh): remove neovide as $EDITOR --- .../price/dots/.config/zsh/config/profile/profile/env.zsh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/users/price/dots/.config/zsh/config/profile/profile/env.zsh b/users/price/dots/.config/zsh/config/profile/profile/env.zsh index b6571da2..ee99db04 100644 --- a/users/price/dots/.config/zsh/config/profile/profile/env.zsh +++ b/users/price/dots/.config/zsh/config/profile/profile/env.zsh @@ -112,11 +112,7 @@ fi local new_editor local new_visual local new_manpager - if [[ -n "${XDG_CURRENT_DESKTOP}" ]] && command -v neovide >/dev/null 2>&1; then - new_editor="neovide --no-fork" - new_visual="neovide --no-fork" - new_manpager="${XDG_CONFIG_HOME}/zsh/config/profile/profile/manpager_wrapper_func.bash" - elif command -v nvim >/dev/null 2>&1; then + if command -v nvim >/dev/null 2>&1; then new_editor=nvim new_visual=nvim new_manpager="nvim +Man!" @@ -177,4 +173,4 @@ export POWERSHELL_TELEMETRY_OPTOUT=true ### NPM ### export NPM_CONFIG_PREFIX="${HOME}/.npm-global" -export PATH="${PATH}:${NPM_CONFIG_PREFIX}/bin" +export PATH="${PATH}:${NPM_CONFIG_PREFIX}/bin" \ No newline at end of file