From c8bc5222682a92c59182ac143147660d74d9244f Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 1 Jun 2024 14:38:55 +0100 Subject: [PATCH] Revert "Use fzf for searching zsh history" This reverts commit 0bbd536e3e090a62f3f4f97db2999d180bf0995d. --- lib/shared/home-manager.nix | 1 + lib/shared/modules/atuin.nix | 6 ++++++ lib/shared/modules/zsh.nix | 1 - 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 lib/shared/modules/atuin.nix diff --git a/lib/shared/home-manager.nix b/lib/shared/home-manager.nix index 13868a7..ed9ba58 100644 --- a/lib/shared/home-manager.nix +++ b/lib/shared/home-manager.nix @@ -8,6 +8,7 @@ imports = [ (import ./modules/neovim.nix { inherit inputs; }) + ./modules/atuin.nix ./modules/bat.nix ./modules/bin.nix ./modules/direnv.nix diff --git a/lib/shared/modules/atuin.nix b/lib/shared/modules/atuin.nix new file mode 100644 index 0000000..f99d093 --- /dev/null +++ b/lib/shared/modules/atuin.nix @@ -0,0 +1,6 @@ +{ + programs.atuin = { + enable = true; + enableZshIntegration = true; + }; +} diff --git a/lib/shared/modules/zsh.nix b/lib/shared/modules/zsh.nix index f101039..46ec0fe 100644 --- a/lib/shared/modules/zsh.nix +++ b/lib/shared/modules/zsh.nix @@ -300,7 +300,6 @@ name = "plugin/vi-mode"; tags = [ "from:oh-my-zsh" ]; } - { name = "joshskidmore/zsh-fzf-history-search"; } { name = "zsh-users/zsh-completions"; } { name = "zsh-users/zsh-syntax-highlighting"; } ];