mirror of
https://github.com/ivuorinen/astronvim_config.git
synced 2026-01-26 11:24:07 +00:00
5 lines
135 B
Lua
5 lines
135 B
Lua
vim.api.nvim_create_autocmd(
|
|
{ "BufRead", "BufNewFile" },
|
|
{ pattern = { "*.txt", "*.md", "*.tex" }, command = "setlocal spell" }
|
|
)
|