diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-09-01 18:39:39 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-09-01 18:39:39 +0200 |
commit | 40b08fca1ec5fffc13bc59ea467c08f8bdbd9ed1 (patch) | |
tree | fffd829505a0c6c044355de57533b5b6e7ef72ff /modules | |
parent | fix(conf/unison): Don't synchronize `~/media/music` (diff) | |
download | nixos-config-40b08fca1ec5fffc13bc59ea467c08f8bdbd9ed1.tar.gz nixos-config-40b08fca1ec5fffc13bc59ea467c08f8bdbd9ed1.zip |
fix(conf/nvim/plgs/ltex_extra): Also enable Swedish spell checking
Diffstat (limited to 'modules')
-rw-r--r-- | modules/home/conf/nvim/plgs/ltex_extra/lua/ltex_extra.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/home/conf/nvim/plgs/ltex_extra/lua/ltex_extra.lua b/modules/home/conf/nvim/plgs/ltex_extra/lua/ltex_extra.lua index f55a9ba7..d532428a 100644 --- a/modules/home/conf/nvim/plgs/ltex_extra/lua/ltex_extra.lua +++ b/modules/home/conf/nvim/plgs/ltex_extra/lua/ltex_extra.lua @@ -1,7 +1,7 @@ require("ltex_extra").setup({ -- table <string> : languages for witch dictionaries will be loaded, e.g. { "es-AR", "en-US" } -- https://valentjn.github.io/ltex/supported-languages.html#natural-languages - load_langs = { "en-CA", "de-DE" }, -- en-US as default + load_langs = { "en-CA", "de-DE", "sv-SE" }, -- en-US as default -- boolean : whether to load dictionaries on startup init_check = true, -- string : relative or absolute path to store dictionaries |