AutoYADM commit: 2024-12-11 17:20:03

This commit is contained in:
Daniel Fichtinger 2024-12-11 17:20:03 -05:00
parent 74486c21af
commit f58e74f29f
3 changed files with 3 additions and 1 deletions

View file

@ -5,5 +5,6 @@ local opt = vim.opt
opt.scrolloff = 0 opt.scrolloff = 0
opt.spell = true opt.spell = true
table.insert(opt.spelllang, -1, "academic") -- opt.spelllang = vim.tbl_extend("force", opt.spelllang, { "en", "academic" })
opt.spelllang = { "en", "en-academic" }
-- opt.spelloptions = "camel" -- opt.spelloptions = "camel"

View file

@ -3,6 +3,7 @@ return {
build = ":DirtytalkUpdate", build = ":DirtytalkUpdate",
config = function() config = function()
vim.opt.spelllang = { "en", "programming" } vim.opt.spelllang = { "en", "programming" }
-- opt.spelllang = vim.tbl_extend("force", vim.opt.spelllang, { "academic" })
end, end,
-- Note: let g:dirtytalk_blacklist=['lorem-ipsum'] to disable a wordlist -- Note: let g:dirtytalk_blacklist=['lorem-ipsum'] to disable a wordlist
-- Mus run :DirtytalkUpdate after making this change -- Mus run :DirtytalkUpdate after making this change