From c1744c48e157e87aec57169b59b691e410faafd5 Mon Sep 17 00:00:00 2001 From: Julien Rabier Date: Sun, 7 May 2023 16:56:50 +0200 Subject: [PATCH] [nvim] enable spellchecking --- private_dot_config/nvim/lua/config/options.lua.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/private_dot_config/nvim/lua/config/options.lua.tmpl b/private_dot_config/nvim/lua/config/options.lua.tmpl index d32a20a..d9d188c 100644 --- a/private_dot_config/nvim/lua/config/options.lua.tmpl +++ b/private_dot_config/nvim/lua/config/options.lua.tmpl @@ -25,7 +25,6 @@ opt.list = true opt.modeline = true opt.number = true opt.showmatch = true ---opt.spelllang = fr opt.undofile = true {{- if eq .chezmoi.hostname "taupo" }} opt.undodir = "/home/taziden/.vim/undo" @@ -39,6 +38,7 @@ opt.softtabstop = 4 opt.pastetoggle = "" opt.timeoutlen = 200 -- https://github.com/folke/which-key.nvim#%EF%B8%8F-configuration opt.mouse = "a" +opt.spell = true opt.spelllang = { "fr" } opt.wrap = true opt.rtp:append (vim.fn.stdpath ('data') .. '/site') -- https://github.com/neovim/neovim/issues/23082