Nvim : Disable swap files.

This commit is contained in:
Dmitry Voronin 2024-05-14 20:21:41 +03:00
parent a79c118907
commit a7d5279377
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k

View file

@ -27,5 +27,8 @@
-- Relative line numbers.
vim.wo.relativenumber = ${toString(setting.nvim.editor.relativenumber)}
-- Disable swap files.
vim.opt.swapfile = false
'';
}