update for updates

This commit is contained in:
2026-04-22 15:37:14 -05:00
parent 7f2c8ececd
commit d0bf155fa8
+7
View File
@@ -46,3 +46,10 @@ opt.splitbelow = true -- split horizontal window to the bottom
-- turn off swapfile -- turn off swapfile
opt.swapfile = false opt.swapfile = false
-- auto-reload files changed outside neovim
opt.autoread = true
vim.api.nvim_create_autocmd({ "FocusGained", "BufEnter", "CursorHold", "CursorHoldI" }, {
pattern = "*",
command = "checktime",
})