nixvimConfigs: update deprecated attributes

This commit is contained in:
Gabriel Arazas 2024-07-11 17:29:17 +08:00
parent 7d7ea77527
commit 7a049da310
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360
3 changed files with 12 additions and 8 deletions

View File

@ -11,14 +11,14 @@
cssls.enable = true; # For CSS.
denols.enable = true; # For Deno runtime.
dockerls.enable = true; # For Dockerfiles.
emmet_ls.enable = true; # For emmet support.
emmet-ls.enable = true; # For emmet support.
eslint.enable = true; # For JavaScript.
html.enable = true; # For HTML.
jsonls.enable = true; # There's one for JSON?
lemminx.enable = true; # And for XML?
ltex.enable = true; # And for LanguageTool, too?
lua-ls.enable = true; # For Lua.
nil_ls.enable = true; # For Nix.
nil-ls.enable = true; # For Nix.
nushell.enable = true; # For Nushell.
pyright.enable = true; # For Python.

View File

@ -43,8 +43,10 @@ in
# Enable all of its useful features.
folding = true;
indent = true;
incrementalSelection.enable = true;
settings = {
indent.enable = true;
incremental_selection.enable = true;
};
};
# Enable some more context for me.
@ -94,7 +96,7 @@ in
}]
++ (
let
motions = lib.cartesianProductOfSets {
motions = lib.cartesianProduct {
region = [ "Start" "End" ];
jumpDirection = [ "Previous" "Next" ];
variant = [ "outer" "inner" ];
@ -213,7 +215,7 @@ in
[{ enable = true; }]
++ (
let
motions = lib.cartesianProductOfSets {
motions = lib.cartesianProduct {
jumpDirection = [ "Previous" "Next" ];
variant = [ "outer" ];
};

View File

@ -20,8 +20,10 @@ in
# Enable all of its useful features.
folding = true;
indent = true;
incrementalSelection.enable = true;
settings = {
indent.enable = true;
incremental_selection.enable = true;
};
};
# Enable some more context for me.