diff --git a/home-modules/nushell/default.nix b/home-modules/nushell/default.nix index 6e08c2b..241960d 100644 --- a/home-modules/nushell/default.nix +++ b/home-modules/nushell/default.nix @@ -10,30 +10,8 @@ in { programs = { nushell = { enable = true; - extraConfig = '' - let carapace_completer = {|spans| - carapace $spans.0 nushell $spans | from json - } - $env.config = { - show_banner: false, - completions: { - case_sensitive: false - quick: true - partial: true - algorithm: "fuzzy" - external: { - enable: true - max_results: 100 - completer: $carapace_completer - } - } - } - ''; - shellAliases = { - vi = "nvim"; - vim = "nvim"; - }; }; + carapace.enable = true; carapace.enableNushellIntegration = true;