[nvim] sync buffers between instances and disabled swapfile

This commit is contained in:
Afonso Franco 2024-09-12 21:41:01 +01:00
parent e492e31e42
commit 4f91b59860
Signed by: afonso
SSH key fingerprint: SHA256:PQTRDHPH3yALEGtHXnXBp3Orfcn21pK20t0tS1kHg54

View file

@ -42,3 +42,7 @@ vim.g.jukit_mappings = 0
vim.opt.formatoptions:remove("ro")
--Sign gutter always on
vim.opt.signcolumn = "yes"
-- sync buffers automatically
vim.opt.autoread = true
-- disable swapfile
vim.opt.swapfile = false