Add keymap to reload file

This commit is contained in:
2026-02-22 20:02:44 +00:00
parent bac22a5657
commit cc7139c2ff
2 changed files with 2 additions and 1 deletions

View File

@@ -30,7 +30,7 @@ vim.api.nvim_create_autocmd('SwapExists', {
desc = 'Always choose to delete the swap file, files are saved automatically',
group = vim.api.nvim_create_augroup('NoSwaps', { clear = true }),
callback = function(args)
vim.cmd("let v:swapchoice = 'd'")
vim.cmd "let v:swapchoice = 'd'"
end,
})