2023-09-07 08:48:42 +01:00
|
|
|
{ config, catppuccin-themes, ... }: {
|
2023-08-07 11:53:32 +01:00
|
|
|
imports = [ ./default.nix ];
|
2023-07-05 11:08:23 +01:00
|
|
|
programs = {
|
|
|
|
zsh = {
|
|
|
|
enable = true;
|
|
|
|
enableAutosuggestions = true;
|
|
|
|
enableCompletion = true;
|
|
|
|
syntaxHighlighting.enable = true;
|
|
|
|
enableVteIntegration = true;
|
|
|
|
autocd = true;
|
|
|
|
dotDir = ".config/zsh";
|
|
|
|
historySubstringSearch.enable = true;
|
|
|
|
history.path = "${config.xdg.dataHome}/zsh/history";
|
2023-09-07 08:48:42 +01:00
|
|
|
initExtraFirst = ''
|
|
|
|
source ${catppuccin-themes.zsh}
|
|
|
|
'';
|
2023-09-13 17:41:48 +01:00
|
|
|
initExtra = ''
|
|
|
|
xdg-query-program () { xdg-mime query default $(xdg-mime query filetype $@) }
|
|
|
|
'';
|
2023-07-19 10:06:00 +01:00
|
|
|
oh-my-zsh = {
|
|
|
|
enable = true;
|
|
|
|
plugins = [
|
|
|
|
# Productivity
|
|
|
|
"aliases"
|
|
|
|
"colored-man-pages"
|
|
|
|
"command-not-found"
|
|
|
|
"extract"
|
|
|
|
# Build tools
|
|
|
|
"git"
|
|
|
|
"gitignore"
|
|
|
|
# Misc
|
|
|
|
"lol"
|
|
|
|
"rand-quote"
|
|
|
|
];
|
|
|
|
theme = "";
|
|
|
|
};
|
2023-07-05 11:08:23 +01:00
|
|
|
};
|
|
|
|
direnv.enableZshIntegration = true;
|
2023-07-10 20:58:41 +01:00
|
|
|
fzf.enableZshIntegration = true;
|
2023-07-16 17:35:36 +01:00
|
|
|
keychain.enableZshIntegration = true;
|
|
|
|
starship.enableZshIntegration = true;
|
2023-03-29 15:38:01 +01:00
|
|
|
};
|
|
|
|
}
|