2023-03-29 15:38:01 +01:00
|
|
|
{ config, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
programs.zsh = {
|
|
|
|
enable = true;
|
|
|
|
shellAliases = {
|
|
|
|
ll = "ls -l";
|
2023-04-21 07:35:29 +01:00
|
|
|
lg = "lazygit";
|
2023-05-12 08:38:50 +01:00
|
|
|
hypr = "Hyprland -c $HOME/.config/hypr/hyprland-$(hostname).conf";
|
|
|
|
neovide = "WINIT_UNIX_BACKEND=x11 neovide";
|
2023-03-29 15:38:01 +01:00
|
|
|
};
|
|
|
|
history = {
|
|
|
|
size = 10000;
|
|
|
|
path = "${config.xdg.dataHome}/zsh/history";
|
|
|
|
};
|
|
|
|
};
|
2023-04-29 12:38:42 +01:00
|
|
|
programs.keychain.enableZshIntegration = true;
|
|
|
|
programs.starship.enableZshIntegration = true;
|
2023-03-29 15:38:01 +01:00
|
|
|
}
|