enabled spell checking

This commit is contained in:
kalmenn 2024-01-07 18:16:05 +01:00
parent 01c084a5a3
commit 3dd0e7ac89
Signed by: kalmenn
GPG key ID: F500055C44BC3834
2 changed files with 6 additions and 1 deletions

View file

@ -9,6 +9,7 @@ return {
null_ls.setup({ null_ls.setup({
sources = { sources = {
null_ls.builtins.completion.spell,
}, },
}) })
end, end,

View file

@ -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"