From 574ce1eff1ef4f0c238aa232b6deb94d8dba2d5d Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Tue, 10 Sep 2024 16:45:45 -0700 Subject: [PATCH] Iterate on some basic zsh customizations --- nixos/hosts/xps13_9350/home.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/hosts/xps13_9350/home.nix b/nixos/hosts/xps13_9350/home.nix index ef9ed3de..a4f7cacc 100644 --- a/nixos/hosts/xps13_9350/home.nix +++ b/nixos/hosts/xps13_9350/home.nix @@ -13,6 +13,9 @@ programs.zsh = { enable = true; dotDir = ".config/zsh"; + enableCompletion = true; + enableHistory = true; + initExtra = "bindkey -e\nbindkey '^[[1;5D' backward-word\nbindkey '^[[1;5C' forward-word"; plugins = [ { name = "zsh-autosuggestions";