From 974733dd31b41996a1b82d06cbe7bcd96201942f Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Tue, 12 Jul 2022 21:02:29 +0200 Subject: [PATCH] feat(zsh): enable auto-completion/suggestions --- home-manager/zsh.nix | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) 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" - ]; - }; }; }