diff options
Diffstat (limited to 'nix')
-rw-r--r-- | nix/hosts/caladan/home_emile.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/nix/hosts/caladan/home_emile.nix b/nix/hosts/caladan/home_emile.nix index d622df0..4acc4a1 100644 --- a/nix/hosts/caladan/home_emile.nix +++ b/nix/hosts/caladan/home_emile.nix @@ -1,4 +1,4 @@ -{ pkgs, lib, ... }: +{ pkgs, lib, stdenv, ... }: { home = { @@ -26,10 +26,11 @@ enableCompletion = true; #syntaxHighlighting.enable = true; shellAliases = import ./aliases.nix; - enableAutosuggestions = true; + # autosuggestions.enable = true; + # enableAutosuggestions = true; oh-my-zsh = { enable = true; - plugins = [ "git" "vi-mode" "web-search" "urltools" ]; + plugins = [ "git" "web-search" "urltools" ]; }; defaultKeymap = "viins"; |