diff options
author | Emile <git@emile.space> | 2024-06-09 00:17:27 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2024-06-09 00:17:27 +0200 |
commit | 091a43d7191b1132607a7cf2cbc88b08b70e150e (patch) | |
tree | 66ae506716e85fa65f7f4d273c5c4834d21f0b67 /nix/hosts/caladan/home_emile.nix | |
parent | deb472035830fdd407cda05cbf53c31f1272ba8f (diff) |
zsh settings
Diffstat (limited to 'nix/hosts/caladan/home_emile.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"; |