summaryrefslogtreecommitdiff
path: root/users/seth/shell/zsh.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-05-10 21:03:13 -0400
committerseth <[email protected]>2024-05-10 21:30:32 -0400
commit1ec692c24c5b3345e6d7fe1445f2a51b1e322f03 (patch)
tree4ee89705818476283d5759ebbed19aa4a8327cda /users/seth/shell/zsh.nix
parenteb14eca101346dc5acf005060b07efd33c484556 (diff)
seth: use global catppuccin.enable
Diffstat (limited to 'users/seth/shell/zsh.nix')
-rw-r--r--users/seth/shell/zsh.nix16
1 files changed, 2 insertions, 14 deletions
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;
})
];
};