diff --git a/home-manager/zsh.nix b/home-manager/zsh.nix index d095563..4018323 100644 --- a/home-manager/zsh.nix +++ b/home-manager/zsh.nix @@ -3,18 +3,12 @@ { programs.zsh = { enable = true; - enableSyntaxHighlighting = true; + enableAutosuggestions = true; + enableCompletion = true; history.size = 10000; shellAliases = { ls = "exa --group-directories-first --git"; }; - - oh-my-zsh = { - enable = true; - plugins = [ - "vi-mode" - ]; - }; }; }