Add zsh plugins

This commit is contained in:
Torjus Håkestad 2024-03-08 18:14:22 +01:00
parent d14c058a4c
commit 79234d0f5b

View File

@ -12,6 +12,18 @@
initExtra = '' initExtra = ''
bindkey -v bindkey -v
bindkey '^R' history-incremental-search-backward bindkey '^R' history-incremental-search-backward
# Prompt stuff
autoload -Uz promptinit
promptinit
prompt pure
''; '';
zplug = {
enable = true;
plugins = [
({ name = "plugins/git"; tags = [ "from:oh-my-zsh" ]; })
({ name = "modules/prompt"; tags = [ "from:prezto" ]; })
];
};
}; };
} }