about summary refs log tree commit diff
path: root/programs/zsh/default.nix
blob: 0e19da1d96022a9fea03ce5c29e44de6f7651487 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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;
    enableCompletion = true;
    enableAutosuggestions = true;
    autocd = true;
    dotDir = ".config/zsh";
    history = {
      path = "$HOME/.cache/zsh/history";
      size = 10000;
      save = 10000;
    };
    shellAliases = import ../aliases.nix // import platformAliases;
    defaultKeymap = "viins";
    initExtraBeforeCompInit = builtins.readFile ./precomp.zshrc;
    initExtra = ''
      _comp_options+=(globdots)
    '';

    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";

      ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=3";
      DEV_ALLOW_ITERM2_INTEGRATION = "1";

      EDITOR = "vim";
      VISUAL = EDITOR;
      GIT_EDITOR = EDITOR;

      GOPATH = "$HOME";

      PATH = "$HOME/.emacs.d/bin:$HOME/bin:$PATH";
    };
    # envExtra
    # profileExtra
    # loginExtra
    # logoutExtra
    # localVariables
  };
}