From c1f733f190cdc7f539b5a1ce825465462952feb0 Mon Sep 17 00:00:00 2001 From: Dustin Swan Date: Sat, 30 Nov 2019 21:17:23 -0500 Subject: [PATCH] Trying out Starship. And almost getting Fish to work with home-manager on mac.. almost --- home-common.nix | 11 ++++++++++- home-mac.nix | 1 + 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/home-common.nix b/home-common.nix index 9033ed3..61b581f 100644 --- a/home-common.nix +++ b/home-common.nix @@ -99,12 +99,12 @@ }; programs.zsh = { + # programs.fish = { enable = true; enableAutosuggestions = true; oh-my-zsh = { enable = true; plugins = [ "git" ]; - theme = "refined"; }; shellAliases = { l = "ls -la"; @@ -117,14 +117,22 @@ }; }; + programs.starship = { + enable = true; + enableZshIntegration = true; + # enableFishIntegration = true; + }; + programs.fzf = { enable = true; enableZshIntegration = true; + # enableFishIntegration = true; # uhoh, this doesn't exist yet }; programs.broot = { enable = true; enableZshIntegration = true; + # enableFishIntegration = true; }; programs.ssh = { @@ -255,6 +263,7 @@ programs.keychain = { enable = true; enableZshIntegration = true; + # enableFishIntegration = true; # uhoh, this doesn't exist yet either inheritType = "any"; agents = ["gpg" "ssh"]; keys = ["id_rsa" "2B3A6377"]; diff --git a/home-mac.nix b/home-mac.nix index 8c0c3f3..aa609b5 100644 --- a/home-mac.nix +++ b/home-mac.nix @@ -13,6 +13,7 @@ }; programs.zsh.initExtra = "source ~/.nix-profile/etc/profile.d/nix.sh"; + # programs.fish.interactiveShellInit = "source ~/.nix-profile/etc/profile.d/nix.sh"; imports = [ ./home-common.nix ./home-mail.nix ]; }