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