From 8ee6267080f543e9d9e6c90dfa513cee44096e84 Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Sat, 26 Sep 2020 11:41:35 +0200 Subject: Add system config --- programs/zsh/default.nix | 29 +++++++---------------------- 1 file changed, 7 insertions(+), 22 deletions(-) (limited to 'programs/zsh/default.nix') diff --git a/programs/zsh/default.nix b/programs/zsh/default.nix index 942af70..0e19da1 100644 --- a/programs/zsh/default.nix +++ b/programs/zsh/default.nix @@ -1,4 +1,10 @@ pkgs: + +let + isDarwin = builtins.currentSystem == "x86_64-darwin"; + platformAliases = + if isDarwin then ../../platforms/darwin/aliases.nix + else ../../platforms/linux/aliases.nix { programs.zsh = { enable = true; @@ -11,34 +17,13 @@ pkgs: size = 10000; save = 10000; }; - shellAliases = import ../aliases.nix; + shellAliases = import ../aliases.nix // import platformAliases; defaultKeymap = "viins"; initExtraBeforeCompInit = builtins.readFile ./precomp.zshrc; initExtra = '' _comp_options+=(globdots) ''; - # plugins = [ - # { - # name = "zsh-autosuggestions"; - # src = pkgs.fetchFromGitHub { - # owner = "zsh-users"; - # repo = "zsh-autosuggestions"; - # rev = "v0.6.3"; - # sha256 = "1h8h2mz9wpjpymgl2p7pc146c1jgb3dggpvzwm9ln3in336wl95c"; - # }; - # } - # { - # name = "zsh-syntax-highlighting"; - # src = pkgs.fetchFromGitHub { - # owner = "zsh-users"; - # repo = "zsh-syntax-highlighting"; - # rev = "be3882aeb054d01f6667facc31522e82f00b5e94"; - # sha256 = "0w8x5ilpwx90s2s2y56vbzq92ircmrf0l5x8hz4g1nx3qzawv6af"; - # }; - # } - # ]; - sessionVariables = rec { PROMPT="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "; NVIM_TUI_ENABLE_TRUE_COLOR = "1"; -- cgit 1.4.1