feat(nu): complete nushell support

This commit is contained in:
Artur Manuel 2025-01-29 23:01:10 +00:00
commit dbc066fed9
2 changed files with 4 additions and 1 deletions

3
.editorconfig Normal file
View file

@ -0,0 +1,3 @@
[*.nix]
indent_size = 2
indent_style = space

View file

@ -56,6 +56,7 @@ in {
python.enable = true; python.enable = true;
rust.enable = true; rust.enable = true;
zig.enable = true; zig.enable = true;
nu.enable = true;
}; };
visuals = { visuals = {
indent-blankline.enable = true; indent-blankline.enable = true;
@ -110,7 +111,6 @@ in {
context.enable = true; context.enable = true;
highlight.enable = true; highlight.enable = true;
incrementalSelection.enable = true; incrementalSelection.enable = true;
grammars = [pkgs.tree-sitter-grammars.tree-sitter-nu];
}; };
dashboard.alpha.enable = true; dashboard.alpha.enable = true;
binds.whichKey.enable = true; binds.whichKey.enable = true;