From 798193bc0b97534d86e0ea24385f2fafd9008f17 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 19 Sep 2021 22:07:02 -0400 Subject: [PATCH] fix: disable environment-based options --- users/profiles/shells/zsh.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/users/profiles/shells/zsh.nix b/users/profiles/shells/zsh.nix index f5906d9..06210dc 100644 --- a/users/profiles/shells/zsh.nix +++ b/users/profiles/shells/zsh.nix @@ -6,17 +6,17 @@ enableCompletion = true; enableVteIntegration = true; - autosuggestions.enable = true; + # autosuggestions.enable = true; - syntaxHighlighting = { - enable = true; - highlighters = [ "main" "brackets" "pattern" "cursor" ]; - patterns = { - "rm -rf *" = "fg=white,bold,bg=red"; - }; - }; + # syntaxHighlighting = { + # enable = true; + # highlighters = [ "main" "brackets" "pattern" "cursor" ]; + # patterns = { + # "rm -rf *" = "fg=white,bold,bg=red"; + # }; + # }; - zsh-autoenv.enable = true; + # zsh-autoenv.enable = true; dotDir = ".config/zsh";