From 7b5e7f24b967fa29c5e64884edf5138bacf991b6 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 19 Sep 2021 19:51:53 -0400 Subject: [PATCH] refactor: remove nixos/profiles/develop/zsh --- profiles/develop/common.nix | 2 +- profiles/develop/zsh.nix | 45 ------------------------------------- 2 files changed, 1 insertion(+), 46 deletions(-) delete mode 100644 profiles/develop/zsh.nix diff --git a/profiles/develop/common.nix b/profiles/develop/common.nix index faed268..8046f52 100644 --- a/profiles/develop/common.nix +++ b/profiles/develop/common.nix @@ -1 +1 @@ -{ imports = [ ./zsh.nix ]; } +{ imports = [ ]; } diff --git a/profiles/develop/zsh.nix b/profiles/develop/zsh.nix deleted file mode 100644 index bae9427..0000000 --- a/profiles/develop/zsh.nix +++ /dev/null @@ -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; - }; -}