aboutsummaryrefslogtreecommitdiff
path: root/modules/home-manager/zsh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home-manager/zsh.nix')
-rw-r--r--modules/home-manager/zsh.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/modules/home-manager/zsh.nix b/modules/home-manager/zsh.nix
deleted file mode 100644
index 9dab7d8..0000000
--- a/modules/home-manager/zsh.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-let
- cfg = config.zsh;
-in {
- options.zsh.enable = lib.mkEnableOption "Enable zsh and configure";
-
- config = lib.mkIf cfg.enable {
- programs.zsh = {
- enable = true;
- autosuggestion.enable = true;
- historySubstringSearch.enable = true;
- plugins = [
- {
- name = "pure";
- src = "${pkgs.pure-prompt}/share/zsh/site-functions";
- }
- {
- name = "zsh-completions";
- src = "${pkgs.zsh-completions}/share/zsh/site-functions";
- }
- {
- name = "fast-syntax-highlighting";
- src = "${pkgs.zsh-fast-syntax-highlighting}/share/zsh/site-functions";
- }
- ];
- };
- };
-}