Files
dotfiles/nix/users/luca/zsh.nix
rocketcamel 9b9ca64fc6 zsh additions + qol changes (#1)
* flake changes

* hm enable by default, omp home-manager

* zsh plugins
2025-02-03 00:26:06 -08:00

24 lines
374 B
Nix

{ pkgs, ... }:
{
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
history.size = 1000;
envExtra = ''
. "$HOME/.rokit/env"
'';
oh-my-zsh = {
enable = true;
plugins = [
"git"
];
};
plugins = [
{
name = "fzf-tab";
src = pkgs.zsh-fzf-tab;
file = "share/fzf-tab/fzf-tab.plugin.zsh";
}
];
}