nix/home/file/nvim/module/config/Autoread.nix

11 lines
239 B
Nix
Raw Normal View History

{ ... }:
{
text = ''
vim.o.autoread = true
vim.api.nvim_create_autocmd({ "BufEnter", "CursorHold", "CursorHoldI", "FocusGained" }, {
command = "if mode() != 'c' | checktime | endif",
pattern = { "*" },
})
'';
2024-04-06 03:03:58 +03:00
}