diff options
Diffstat (limited to 'users/seth/shell')
| -rw-r--r-- | users/seth/shell/fish.nix | 3 | ||||
| -rw-r--r-- | users/seth/shell/zsh.nix | 16 |
2 files changed, 3 insertions, 16 deletions
diff --git a/users/seth/shell/fish.nix b/users/seth/shell/fish.nix index 0b37273..b20eb40 100644 --- a/users/seth/shell/fish.nix +++ b/users/seth/shell/fish.nix @@ -15,7 +15,6 @@ in { programs.fish = lib.mkMerge [ { enable = true; - catppuccin.enable = true; interactiveShellInit = '' set -l nixfile ${config.home.homeDirectory}/.nix-profile/etc/profile.d/nix.fish @@ -39,7 +38,7 @@ in { (lib.mkIf cfg.withPlugins { plugins = let - mkFishPlugins = builtins.map (plugin: { + mkFishPlugins = map (plugin: { name = plugin; inherit (pkgs.fishPlugins.${plugin}) src; }); diff --git a/users/seth/shell/zsh.nix b/users/seth/shell/zsh.nix index b3f31b9..4ce116a 100644 --- a/users/seth/shell/zsh.nix +++ b/users/seth/shell/zsh.nix @@ -15,7 +15,6 @@ in { programs.zsh = lib.mkMerge [ { enable = true; - enableAutosuggestions = true; completionInit = '' autoload -Uz bashcompinit compinit @@ -85,18 +84,6 @@ in { (lib.mkIf cfg.withPlugins { plugins = [ { - name = "cattppuccin-zsh-syntax-highlighting"; - src = pkgs.fetchFromGitHub { - owner = "catppuccin"; - repo = "zsh-syntax-highlighting"; - rev = "06d519c20798f0ebe275fc3a8101841faaeee8ea"; - sha256 = "sha256-Q7KmwUd9fblprL55W0Sf4g7lRcemnhjh4/v+TacJSfo="; - }; - - file = "themes/catppuccin_mocha-zsh-syntax-highlighting.zsh"; - } - - { name = "nix-zsh-completions"; src = pkgs.nix-zsh-completions; file = "share/zsh/plugins/nix/nix-zsh-completions.plugin.zsh"; @@ -121,7 +108,8 @@ in { } ]; - enableSyntaxHighlighting = true; + autosuggestion.enable = true; + syntaxHighlighting.enable = true; }) ]; }; |
