summaryrefslogtreecommitdiff
path: root/modules/home-manager/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home-manager/shell.nix')
-rw-r--r--modules/home-manager/shell.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/modules/home-manager/shell.nix b/modules/home-manager/shell.nix
index 5568272..1fcc03f 100644
--- a/modules/home-manager/shell.nix
+++ b/modules/home-manager/shell.nix
@@ -1,12 +1,14 @@
{nushell-scripts, ... }: {
programs.nushell = {
extraConfig = ''
- source ${nushell-scripts}/custom-completions/pass/pass-completions.nu *
- source ${nushell-scripts}/custom-completions/nix/nix-completions.nu *
- source ${nushell-scripts}/custom-completions/man/man-completions.nu *
- source ${nushell-scripts}/custom-completions/cargo/cargo-completions.nu *
- source ${nushell-scripts}/custom-completions/make/make-completions.nu *
- source ${nushell-scripts}/custom-completions/git/git-completions.nu *
+ use ~/.cache/starship/init.nu
+
+ use ${nushell-scripts}/custom-completions/pass/pass-completions.nu *
+ use ${nushell-scripts}/custom-completions/nix/nix-completions.nu *
+ use ${nushell-scripts}/custom-completions/man/man-completions.nu *
+ use ${nushell-scripts}/custom-completions/cargo/cargo-completions.nu *
+ use ${nushell-scripts}/custom-completions/make/make-completions.nu *
+ use ${nushell-scripts}/custom-completions/git/git-completions.nu *
'';
};
}