refactor: remove nixos/profiles/develop/zsh

This commit is contained in:
Infinidoge 2021-09-19 19:51:53 -04:00
parent 312d9805b6
commit 7b5e7f24b9
2 changed files with 1 additions and 46 deletions

View file

@ -1 +1 @@
{ imports = [ ./zsh.nix ]; }
{ imports = [ ]; }

View file

@ -1,45 +0,0 @@
{ ... }: {
programs.zsh = {
enable = true;
autosuggestions.enable = true;
ohMyZsh = {
enable = true;
plugins = [
# Display
"colorize"
"colored-man-pages"
# zsh modifications
"zsh-interactive-cd"
"zsh_reload"
"command-not-found"
# Aliases
"alias-finder"
# Applications
## Docker
"docker"
## Python
"pip"
"python"
## Systemd
"systemd"
## Git
"git"
"github"
"gitignore"
## Emacs
"emacs"
## Vim
"fancy-ctrl-z"
];
};
syntaxHighlighting = {
enable = true;
highlighters = [ "main" "brackets" "pattern" "cursor" ];
patterns = { "rm -rf *" = "fg=white,bold,bg=red"; };
};
zsh-autoenv.enable = true;
};
}