created config for terminal and disable spellcheck in terminal
This commit is contained in:
parent
fb7c11497d
commit
8726a1a74d
8
lua/plugins/terminal.lua
Normal file
8
lua/plugins/terminal.lua
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
vim.api.nvim_create_autocmd("TermOpen", {
|
||||||
|
group = vim.api.nvim_create_augroup("UserTerminalConfig", {}),
|
||||||
|
callback = function(ev)
|
||||||
|
vim.opt_local.spell = false
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
|
||||||
|
return {}
|
Loading…
Reference in a new issue