From c88d609d34397a1f972168ace24ae41226c3b074 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Tue, 11 Nov 2025 11:51:57 +1100 Subject: [PATCH] feat: add spellchecking to neovim installation --- modules/nixos/features/nixvim.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/modules/nixos/features/nixvim.nix b/modules/nixos/features/nixvim.nix index fd86deb..e4838bd 100644 --- a/modules/nixos/features/nixvim.nix +++ b/modules/nixos/features/nixvim.nix @@ -20,16 +20,21 @@ }; diagnostic.settings.virtual_lines = true; opts = { + # keep-sorted start autoindent = true; + colorcolumn = "80"; expandtab = true; number = true; relativenumber = true; shiftwidth = 2; + # get suggestions by typing z= + spell = true; + spelllang = "en_au"; tabstop = 2; - colorcolumn = "80"; + # keep-sorted end }; plugins = { - # autoclose brackets + # auto close brackets autoclose.enable = true; # completion window