enabled spell checking
This commit is contained in:
parent
01c084a5a3
commit
3dd0e7ac89
|
@ -9,6 +9,7 @@ return {
|
|||
|
||||
null_ls.setup({
|
||||
sources = {
|
||||
null_ls.builtins.completion.spell,
|
||||
},
|
||||
})
|
||||
end,
|
||||
|
|
|
@ -5,7 +5,7 @@ vim.o.relativenumber = true
|
|||
|
||||
-- show hidden characters
|
||||
vim.opt.list = true
|
||||
vim.opt.listchars = { tab = '→ ', trail = '·' }
|
||||
vim.opt.listchars = { tab = "→ ", trail = "·" }
|
||||
|
||||
-- indentation
|
||||
vim.opt.expandtab = true
|
||||
|
@ -32,6 +32,10 @@ vim.opt.splitbelow = true
|
|||
vim.opt.hlsearch = false
|
||||
vim.opt.incsearch = true
|
||||
|
||||
-- spellchecking
|
||||
vim.opt.spelllang = "en_us"
|
||||
vim.opt.spell = true
|
||||
|
||||
-- stuff
|
||||
vim.opt.mousemodel = "extend"
|
||||
|
||||
|
|
Loading…
Reference in a new issue