🔧 chore(nvim): append es to the language list

This commit is contained in:
Sergio Laín 2024-10-04 09:38:59 +02:00
parent fcea2daa95
commit ca1d1ea365
No known key found for this signature in database
GPG key ID: 8429B2EE312F8150

View file

@ -5,10 +5,10 @@ local o = vim.opt
vim.loader.enable() vim.loader.enable()
-- Personal Config and LazyVim global options -- Personal Config and LazyVim global options
vim.g.lualine_info_extras = false go.lualine_info_extras = false
vim.g.lazyvim_statuscolumn.folds_open = true go.lazyvim_statuscolumn.folds_open = true
vim.g.lazyvim_statuscolumn.folds_githl = true go.lazyvim_statuscolumn.folds_githl = true
vim.g.lazygit_config = false go.lazygit_config = false
-- Define leader key -- Define leader key
go.mapleader = " " go.mapleader = " "
@ -39,7 +39,7 @@ o.cmdheight = 0
-- Enable spell checking -- Enable spell checking
o.spell = true o.spell = true
o.spelllang = { "en" } o.spelllang:append("es")
-- Backspacing and indentation when wrapping -- Backspacing and indentation when wrapping
o.backspace = { "start", "eol", "indent" } o.backspace = { "start", "eol", "indent" }