From 4126b2fc7b10a3dc6fbe7f30879e9bd4d6ebc155 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Mon, 18 Mar 2024 00:15:27 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(nvim):=20add=20es=20to=20the?= =?UTF-8?q?=20spelllang=20option=20definition?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/nvim/lua/config/options.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/nvim/lua/config/options.lua b/.config/nvim/lua/config/options.lua index ce37bfd5..b156f0e6 100644 --- a/.config/nvim/lua/config/options.lua +++ b/.config/nvim/lua/config/options.lua @@ -38,6 +38,7 @@ o.cmdheight = 0 -- Enable spell checking o.spell = true +o.spelllang = { "en", "es" } -- Backspacing and indentation when wrapping o.backspace = { "start", "eol", "indent" }