From 64eee8b3fd7707cffaab63fe9dc8ecad20072db8 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Mon, 15 Jul 2024 23:04:21 +0200 Subject: [PATCH] revert: comment out since it seems to cause issues --- modules/home/zsh.nix | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/modules/home/zsh.nix b/modules/home/zsh.nix index 9998f6b..ad797d6 100644 --- a/modules/home/zsh.nix +++ b/modules/home/zsh.nix @@ -6,7 +6,7 @@ autocd = true; autosuggestion.enable = true; enableCompletion = true; - enableGlobalCompInit = true; + # enableGlobalCompInit = true; # Should be a thing according to NixOS options but is not a thing? localVariables = { # Looks like this: '~/some/path > ' @@ -25,23 +25,23 @@ HISTORY_SUBSTRING_SEARCH_ENSURE_UNIQUE = 1; }; - setOptions = [ - # Corrections - "CORRECT" - - # History stuff - "APPEND_HISTORY" - "INC_APPEND_HOSTORY" - "SHARE_HISTORY" - "EXTENDED_HISTORY" - "HIST_REDUCT_BLANKS" - "HIST_IGNORE_SPACE" - - # Disable annoying beep - "NO_BEEP" - # Fix comments - "INTERACTIVE_COMMENTS" - ]; + # setOptions = [ + # # Corrections + # "CORRECT" + # + # # History stuff + # "APPEND_HISTORY" + # "INC_APPEND_HOSTORY" + # "SHARE_HISTORY" + # "EXTENDED_HISTORY" + # "HIST_REDUCT_BLANKS" + # "HIST_IGNORE_SPACE" + # + # # Disable annoying beep + # "NO_BEEP" + # # Fix comments + # "INTERACTIVE_COMMENTS" + # ]; shellAliases = { ls = "eza -lh --git";