chore(nvim): sync buffers between instances and disabled swapfile

This commit is contained in:
Afonso Franco 2024-09-12 21:41:01 +01:00
parent 3cff96ff1d
commit 98e3cd0ec8
Signed by: afonso
SSH key fingerprint: SHA256:gkVPzsQQJzqi21ntQBV6pXTx4bYI53rFGI4XtvCpwd4

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