From 5db06024d727b2ca11f03d3ea6153a7946d8f720 Mon Sep 17 00:00:00 2001 From: schererleander Date: Tue, 29 Apr 2025 20:41:52 +0200 Subject: move modules --- modules/home-manager/zsh.nix | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 modules/home-manager/zsh.nix (limited to 'modules/home-manager/zsh.nix') 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"; - } - ]; - }; - }; -} -- cgit v1.3.1