From 8aa1df50492e55b638439713e88785981d5870b2 Mon Sep 17 00:00:00 2001 From: Stefan Ellmauthaler Date: Fri, 6 May 2022 17:13:32 +0200 Subject: [PATCH] fix some zsh options which are not compatible with nix syntax allow # symbol without escape character in shell --- baseconfiguration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/baseconfiguration.nix b/baseconfiguration.nix index 0ab099a..57f41e5 100644 --- a/baseconfiguration.nix +++ b/baseconfiguration.nix @@ -101,7 +101,7 @@ highlighters = [ "main" "brackets" "root" "line" ]; #styles = { cursor = "standout,underline"; }; }; - setOptions = [ "auto_pushd" "correct" "extendedglob" "nocaseglob" "rcexpandparam" "numericglobsort" "nobeep" "appendhistory" ]; + setOptions = [ "auto_pushd" "correct" "nocaseglob" "rcexpandparam" "numericglobsort" "nobeep" "appendhistory" ]; }; mtr.enable = true;