Files
astronvim_config/autocmds.lua
2023-02-13 15:55:27 +02:00

5 lines
135 B
Lua

vim.api.nvim_create_autocmd(
{ "BufRead", "BufNewFile" },
{ pattern = { "*.txt", "*.md", "*.tex" }, command = "setlocal spell" }
)