1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-11-01 06:27:18 +00:00
Dotfiles/nix/modules/zsh.nix
2021-06-10 16:44:00 +03:00

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
# ];
# };
};
}