From aa116e928f1ca3ea2d51554808cb72c00e68d1de Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Sun, 14 Mar 2021 14:04:25 +0100 Subject: [PATCH] nvim: Remove auto-saving functionality from vim Removed functionality that auto-saves all currently open windows whenever vim loses focus, since that function is more bothersome than helpful (and I remember to save my files 99.9% of the time anyway). That 0.1% will also be impressed in my memory after forgetting once or twice. --- nvim/.config/nvim/init.vim | 3 --- 1 file changed, 3 deletions(-) diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim index 63dd3e7..37c4c39 100644 --- a/nvim/.config/nvim/init.vim +++ b/nvim/.config/nvim/init.vim @@ -55,9 +55,6 @@ set smartcase " shows previews of what substitute command will do (and a couple others) set inccommand=split -" whenever vim loses focus, save -au FocusLost * :wa - " disables showing us the current mode in the command line since airline takes " care of it set noshowmode