From abb1513e8b0a1ed73c90b26ebbf97c98d883ecd8 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Fri, 17 May 2024 00:09:37 +0200 Subject: [PATCH] fix formatting in zsh module --- modules/cli/zsh.nix | 124 ++++++++++++++++++++++---------------------- 1 file changed, 62 insertions(+), 62 deletions(-) diff --git a/modules/cli/zsh.nix b/modules/cli/zsh.nix index 74f2e45..057fdef 100644 --- a/modules/cli/zsh.nix +++ b/modules/cli/zsh.nix @@ -35,68 +35,68 @@ in { }; home-manager.users.${username} = { - programs.zsh = { - enable = true; - shellAliases = { - cl = "clear"; - cp = "cp -ivr"; - mv = "mv -iv"; - rm = "trash -v"; - l = "eza --icons -a"; - e = "eza --icons -lha --git"; - untar = "tar -xvf"; - untargz = "tar -xzf"; - mnt = "udisksctl mount -b"; - umnt = "udisksctl unmount -b"; - v = "nvim"; - kys = "shutdown now"; - gpl = "curl https://www.gnu.org/licenses/gpl-3.0.txt -o LICENSE"; - agpl = "curl https://www.gnu.org/licenses/agpl-3.0.txt -o LICENSE"; - g = "git"; - n = "nix"; - woman = "man"; - open = "xdg-open"; - ":q" = "exit"; - emacs = ":(){ :|:& };:"; - m = "make"; - s = "sudo"; - } // cfg.extraAliases; - initExtraFirst = mkIf cfg.profiling "zmodload zsh/zprof"; - initExtra = mkIf cfg.profiling "zprof"; - history = { - path = "${config.home-manager.users.${username}.xdg.dataHome}/zsh/zsh_history"; - size = 9999999999; - save = 9999999999; - extended = true; - ignoreSpace = true; - }; - autosuggestion.enable = true; - enableCompletion = true; - autocd = false; - dotDir = ".config/zsh"; - plugins = [ - { - name = "fast-syntax-highlighting"; - file = "fast-syntax-highlighting.plugin.zsh"; - src = pkgs.fetchFromGitHub { - owner = "zdharma-continuum"; - repo = "fast-syntax-highlighting"; - rev = "cf318e06a9b7c9f2219d78f41b46fa6e06011fd9"; - hash = "sha256-RVX9ZSzjBW3LpFs2W86lKI6vtcvDWP6EPxzeTcRZua4="; - }; - } - { - name = "zsh-nix-shell"; - file = "nix-shell.plugin.zsh"; - src = pkgs.fetchFromGitHub { - owner = "chisui"; - repo = "zsh-nix-shell"; - rev = "v0.8.0"; - hash = "sha256-Z6EYQdasvpl1P78poj9efnnLj7QQg13Me8x1Ryyw+dM="; - }; - } - ]; - }; + programs.zsh = { + enable = true; + shellAliases = { + cl = "clear"; + cp = "cp -ivr"; + mv = "mv -iv"; + rm = "trash -v"; + l = "eza --icons -a"; + e = "eza --icons -lha --git"; + untar = "tar -xvf"; + untargz = "tar -xzf"; + mnt = "udisksctl mount -b"; + umnt = "udisksctl unmount -b"; + v = "nvim"; + kys = "shutdown now"; + gpl = "curl https://www.gnu.org/licenses/gpl-3.0.txt -o LICENSE"; + agpl = "curl https://www.gnu.org/licenses/agpl-3.0.txt -o LICENSE"; + g = "git"; + n = "nix"; + woman = "man"; + open = "xdg-open"; + ":q" = "exit"; + emacs = ":(){ :|:& };:"; + m = "make"; + s = "sudo"; + } // cfg.extraAliases; + initExtraFirst = mkIf cfg.profiling "zmodload zsh/zprof"; + initExtra = mkIf cfg.profiling "zprof"; + history = { + path = "${config.home-manager.users.${username}.xdg.dataHome}/zsh/zsh_history"; + size = 9999999999; + save = 9999999999; + extended = true; + ignoreSpace = true; + }; + autosuggestion.enable = true; + enableCompletion = true; + autocd = false; + dotDir = ".config/zsh"; + plugins = [ + { + name = "fast-syntax-highlighting"; + file = "fast-syntax-highlighting.plugin.zsh"; + src = pkgs.fetchFromGitHub { + owner = "zdharma-continuum"; + repo = "fast-syntax-highlighting"; + rev = "cf318e06a9b7c9f2219d78f41b46fa6e06011fd9"; + hash = "sha256-RVX9ZSzjBW3LpFs2W86lKI6vtcvDWP6EPxzeTcRZua4="; + }; + } + { + name = "zsh-nix-shell"; + file = "nix-shell.plugin.zsh"; + src = pkgs.fetchFromGitHub { + owner = "chisui"; + repo = "zsh-nix-shell"; + rev = "v0.8.0"; + hash = "sha256-Z6EYQdasvpl1P78poj9efnnLj7QQg13Me8x1Ryyw+dM="; + }; + } + ]; + }; }; }; }