Enable spell checking in settings
This change activates spell checking and sets the language to British English.
This commit is contained in:
parent
0a354b3d13
commit
75b8b88a04
|
|
@ -9,9 +9,9 @@ return {
|
||||||
tab_char = '│',
|
tab_char = '│',
|
||||||
},
|
},
|
||||||
scope = {
|
scope = {
|
||||||
enabled = true, -- Highlight current scope
|
enabled = true, -- Highlight current scope indent guide
|
||||||
show_start = true, -- Show underline at start of scope
|
show_start = true, -- Disable underline at start of scope
|
||||||
show_end = false, -- Don't show underline at end (can be noisy)
|
show_end = false, -- Don't show underline at end
|
||||||
},
|
},
|
||||||
exclude = {
|
exclude = {
|
||||||
filetypes = {
|
filetypes = {
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@ vim.opt.pumblend = 0 -- No transparency
|
||||||
-- The Pmenu* highlight groups control its appearance
|
-- The Pmenu* highlight groups control its appearance
|
||||||
|
|
||||||
-- Spelling
|
-- Spelling
|
||||||
|
vim.opt.spell = true
|
||||||
vim.opt.spelllang = { "en_gb" }
|
vim.opt.spelllang = { "en_gb" }
|
||||||
vim.opt.spelloptions = { "camel,noplainbuffer" }
|
vim.opt.spelloptions = { "camel,noplainbuffer" }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue