feat(zsh): add zsh-vi-mode

main
mandlm 2024-10-17 08:47:12 +02:00
parent e31940ef47
commit af91086a14
Signed by: mandlm
GPG Key ID: 088ED38F036C7AF2
1 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ theme, ... }: { pkgs, theme, ... }:
let let
zsh_autosuggest_highlight_style = if theme == "light" then "fg=180" else "fg=10"; zsh_autosuggest_highlight_style = if theme == "light" then "fg=180" else "fg=10";
in in
@ -20,6 +20,12 @@ in
} }
precmd_functions+=(set_win_title) precmd_functions+=(set_win_title)
function zvm_config() {
ZVM_INIT_MODE=sourcing
}
source ${pkgs.zsh-vi-mode}/share/zsh-vi-mode/zsh-vi-mode.plugin.zsh
''; '';
}; };
} }