From 898dc71fcda46f6ef005094807099c806ed00277 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Sun, 31 Mar 2024 16:12:57 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9E=96=20(home)=20uninstall=20zsh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/shell/zsh.nix | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 home/shell/zsh.nix diff --git a/home/shell/zsh.nix b/home/shell/zsh.nix deleted file mode 100644 index 1a63170..0000000 --- a/home/shell/zsh.nix +++ /dev/null @@ -1,27 +0,0 @@ -{pkgs, ...}: { - programs.zsh = { - enable = true; - enableAutosuggestions = true; - syntaxHighlighting.enable = true; - enableCompletion = true; - sessionVariables = { - VISUAL = "micro"; - EDITOR = "micro"; - WORDCHARS = "*?_-.[]~=&;!#$%^(){}<>"; - }; - history = { - size = 1000000000; - path = "$HOME/.zsh_history"; - extended = true; - }; - initExtra = '' - bindkey -e - bindkey "^[[1;5C" forward-word - bindkey "^[[1;5D" backward-word - bindkey "^[[1;3C" forward-word - bindkey "^[[1;3D" backward-word - bindkey '^H' backward-kill-word - bindkey '5~' kill-word - ''; - }; -}