Compare commits

..

2 Commits

Author SHA1 Message Date
db4669422e
zsh: fix zsh-vi-mode initialisation
All checks were successful
Check flake / build-amd64-linux (push) Successful in 3m44s
2025-02-15 09:49:38 +00:00
7b2a185884
zsh: fix colors 2025-02-15 09:29:15 +00:00

View File

@ -43,6 +43,9 @@ in
};
initExtra = ''
## Colors
autoload -U colors && colors
## Directories
setopt AUTO_PUSHD
setopt CDABLE_VARS
@ -81,7 +84,6 @@ in
## Vi mode
export KEYTIMEOUT=1
bindkey '^R' mcfly-history-widget
## Zsh line editor
unsetopt BEEP
@ -91,6 +93,10 @@ in
setopt HASH_LIST_ALL
'';
localVariables = {
ZVM_INIT_MODE = "sourcing";
};
plugins = with pkgs; [
{
name = "zsh-vi-mode";