39 lines
935 B
Nix
39 lines
935 B
Nix
{config, ...}: {
|
|
imports = [./default.nix];
|
|
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";
|
|
oh-my-zsh = {
|
|
enable = true;
|
|
plugins = [
|
|
# Productivity
|
|
"aliases"
|
|
"colored-man-pages"
|
|
"command-not-found"
|
|
"extract"
|
|
"taskwarrior"
|
|
# Build tools
|
|
"git"
|
|
"gitignore"
|
|
# Misc
|
|
"lol"
|
|
"rand-quote"
|
|
];
|
|
theme = "";
|
|
};
|
|
};
|
|
direnv.enableZshIntegration = true;
|
|
fzf.enableZshIntegration = true;
|
|
keychain.enableZshIntegration = true;
|
|
starship.enableZshIntegration = true;
|
|
};
|
|
}
|