From de4aafdd80b46379a067a443f513f0a016625f80 Mon Sep 17 00:00:00 2001 From: Luminiferous Date: Sat, 11 Oct 2025 13:25:28 +0200 Subject: [PATCH] Changed EDITOR and VISUAL variables to nvim --- config.nu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.nu b/config.nu index 8d21fbc..c8ad45a 100644 --- a/config.nu +++ b/config.nu @@ -18,8 +18,8 @@ # them for future reference. $env.config.show_banner = false -$env.EDITOR = 'hx' -$env.VISUAL = 'hx' +$env.EDITOR = 'nvim' +$env.VISUAL = 'nvim' if ((sys host).name !~ '.*Windows.*') { $env.SSH_AUTH_SOCK = '/home/lumen/.bitwarden-ssh-agent.sock' }