summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorMinijackson <minijackson@riseup.net>2024-07-16 22:01:32 +0200
committerMinijackson <minijackson@riseup.net>2024-07-16 22:01:32 +0200
commit4c805b598e8bbe175daf58dc9deab3311d384156 (patch)
treeaaeb4f46636a249d4a42495dd861f8308170e912 /common
parent05a3a597617bfbfdf5ce8d8c71dca5a820da7abe (diff)
downloadnixos-config-reborn-4c805b598e8bbe175daf58dc9deab3311d384156.tar.gz
nixos-config-reborn-4c805b598e8bbe175daf58dc9deab3311d384156.zip
fix(nixvim): fix deprecated option usage
Diffstat (limited to 'common')
-rw-r--r--common/nixvim.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/common/nixvim.nix b/common/nixvim.nix
index a5f34d9..45c6139 100644
--- a/common/nixvim.nix
+++ b/common/nixvim.nix
@@ -502,10 +502,12 @@ in
502 502
503 treesitter = { 503 treesitter = {
504 enable = true; 504 enable = true;
505 indent = true;
506
507 incrementalSelection.enable = true;
508 nixvimInjections = true; 505 nixvimInjections = true;
506
507 settings = {
508 incremental_selection.enable = true;
509 indent.enable = true;
510 };
509 }; 511 };
510 512
511 treesitter-context = { 513 treesitter-context = {