From dbc066fed939618282f1f079ddc5b4d5e89c39a7 Mon Sep 17 00:00:00 2001 From: Artur Manuel Date: Wed, 29 Jan 2025 23:01:10 +0000 Subject: [PATCH] feat(nu): complete nushell support --- .editorconfig | 3 +++ nvf.nix | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..9fab7c5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,3 @@ +[*.nix] +indent_size = 2 +indent_style = space diff --git a/nvf.nix b/nvf.nix index c70e011..89b28e3 100644 --- a/nvf.nix +++ b/nvf.nix @@ -56,6 +56,7 @@ in { python.enable = true; rust.enable = true; zig.enable = true; + nu.enable = true; }; visuals = { indent-blankline.enable = true; @@ -110,7 +111,6 @@ in { context.enable = true; highlight.enable = true; incrementalSelection.enable = true; - grammars = [pkgs.tree-sitter-grammars.tree-sitter-nu]; }; dashboard.alpha.enable = true; binds.whichKey.enable = true;