1
0

set 'backupcopy' to yes

This commit is contained in:
Rokas Puzonas 2024-10-06 14:56:38 +03:00
parent c9e5984967
commit 3c9ec7eff0

View File

@ -626,6 +626,11 @@ do
vim.g.neovide_scale_factor = 0.75
vim.g.neovide_hide_mouse_when_typing = true
end
-- Stop neovim from confusing tools like inotify
-- Because by default, it will rename the original and then delete it.
-- This confuses inotify to think the file doesn't exist and stops trackign it.
vim.o.backupcopy = "yes"
end
-- [[ Basic Keymaps ]]