mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-01 06:27:18 +00:00
21 lines
564 B
Nix
Executable file
21 lines
564 B
Nix
Executable file
{config, pkgs, ...}:
|
|
{
|
|
programs.zsh.promptInit = "";
|
|
programs.zsh = {
|
|
autosuggestions.enable = true;
|
|
syntaxHighlighting.enable = true;
|
|
enable = true;
|
|
# ohMyZsh = {
|
|
# enable = true;
|
|
# plugins = ["git" "colorize" "colored-man-pages" "emoji" "rustup" "sudo" "zsh-syntax-highlighting" "zsh-autosuggestions" "zsh-completions"];
|
|
# theme = "cloud";
|
|
# customPkgs = [
|
|
# pkgs.zsh-syntax-highlighting
|
|
# pkgs.zsh-autosuggestions
|
|
# pkgs.zsh-completions
|
|
# ];
|
|
# };
|
|
};
|
|
|
|
}
|