From 0ed9b0d077485e8cce69a7eea0ab5902bad695a4 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Thu, 22 Jan 2026 13:02:28 +0100 Subject: [PATCH] More languages --- .config/nvim/lua/config/options.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.config/nvim/lua/config/options.lua b/.config/nvim/lua/config/options.lua index fa371d3..d381481 100644 --- a/.config/nvim/lua/config/options.lua +++ b/.config/nvim/lua/config/options.lua @@ -5,7 +5,7 @@ vim.g.maplocalleader = "," vim.opt.number = true vim.opt.relativenumber = false -- relative line numbers -vim.opt.tabstop = 4 -- tab width +vim.opt.tabstop = 4 -- tab width in spaces vim.opt.shiftwidth = 4 -- indent width vim.opt.expandtab = true -- spaces instead of tabs vim.opt.smartindent = true -- smart indentation @@ -14,4 +14,6 @@ vim.opt.clipboard = "unnamedplus" -- system clipboard -- vim.opt.smoothscroll = true vim.opt.conceallevel = 0 +vim.opt.spelllang = { "en", "nl" } + -- Colorscheme is set in its plugin file