config-perso/zsh.nix

23 lines
407 B
Nix
Raw Normal View History

2024-02-26 15:22:46 +01:00
{ config, pkgs, lib, ... }:
{
programs.zsh = {
enable = true;
oh-my-zsh = {
enable = true;
plugins = [ "git" ];
};
zplug = {
enable = true;
plugins = [
{ name = "zsh-users/zsh-autosuggestions"; }
{ name = "zsh-users/zsh-syntax-highlighting"; }
];
};
};
programs.starship = {
enable = true;
enableZshIntegration = true;
};
}