summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/home-manager/zsh.nix
blob: 6c7b632e13566866330247b29ef1c7946955a463 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{ pkgs, ... }:
{
  imports = [
    { #direnv
      home-manager.users.makefu.home.packages = [ pkgs.direnv ];
      home-manager.users.makefu.home.file.".direnvrc".text = ''
      use_nix() {
        local path="$(nix-instantiate --find-file nixpkgs)"

        if [ -f "$${path}/.version-suffix" ]; then
          local version="$(< $path/.version-suffix)"
        elif [ -f "$path/.version" ]; then
          local version="$(< $path/.version)"
        else
          local version="$(< $(< $path/.git/HEAD))"
        fi

        local cache=".direnv/cache-''${version:-unknown}"

        if [[ ! -e "$cache" ]] || \
          [[ "$HOME/.direnvrc" -nt "$cache" ]] || \
          [[ .envrc -nt "$cache" ]] || \
          [[ default.nix -nt "$cache" ]] || \
          [[ shell.nix -nt "$cache" ]];
        then
          [ -d .direnv ] || mkdir .direnv
          local tmp=$(nix-shell --show-trace "$@" \
            --run "\"$direnv\" dump bash")
          echo "$tmp" > "$cache"
        fi

        local path_backup=$PATH term_backup=$TERM
        direnv_load cat "$cache"

        export PATH=$PATH:$path_backup TERM=$term_backup

        if [[ $# = 0 ]]; then
          watch_file default.nix
          watch_file shell.nix
        fi
      }
      '';
      home-manager.users.makefu.programs.zsh.initExtra = ''
      nixify() {
        if [ ! -e ./.envrc ]; then
          echo "use nix" > .envrc
          direnv allow
        fi
        if [ ! -e default.nix ]; then
          cat > default.nix <<'EOF'
      with import <nixpkgs> {};
      stdenv.mkDerivation {
        name = "env";
        buildInputs = [
          bashInteractive
        ];
      }
      EOF
          ''${EDITOR:-vim} default.nix
        fi
      }
      eval "$(direnv hook zsh)"
      '';
    }
    { # bat
    home-manager.users.makefu.home.packages = [ pkgs.bat ];
      home-manager.users.makefu.programs.zsh.shellAliases = {
        cat = "bat";
        catn = "${pkgs.coreutils}/bin/cat";
      };
    }
  ];
  environment.pathsToLink = [ "/share/zsh" ];
  home-manager.users.makefu = {
    programs.fzf.enable = false; # alt-c
    programs.zsh = {
      enable = true;
      enableAutosuggestions = false;
      enableCompletion = true;
      oh-my-zsh.enable = false;
      history = {
        size = 900001;
        save = 900001;
        ignoreDups = true;
        extended = true;
        share = true;
      };
      sessionVariables = {
        # TERM = "rxvt-unicode-256color";
        TERM = "xterm";
        LANG = "en_US.UTF8";
        LS_COLORS = ":di=1;31:";
        EDITOR = "vim";
      };
      shellAliases = {
        lsl = "ls -lAtr";
        t = "task";
        xo = "mimeopen";
        nmap = "nmap -oN $HOME/loot/scan-`date +\%s`.nmap -oX $HOME/loot/scan-`date +%s`.xml";
      };
      initExtra = ''
        bindkey -e
        # shift-tab
        bindkey '^[[Z' reverse-menu-complete
        bindkey "\e[3~" delete-char
        zstyle ':completion:*' menu select

        setopt HIST_IGNORE_ALL_DUPS
        setopt HIST_IGNORE_SPACE
        setopt HIST_FIND_NO_DUPS

        unset SSH_AGENT_PID
        export SSH_AUTH_SOCK="/run/user/$UID/gnupg/S.gpg-agent.ssh"
        compdef _pass brain
        zstyle ':completion::complete:brain::' prefix "$HOME/brain"
        compdef _pass secrets
        zstyle ':completion::complete:secrets::' prefix "$HOME/.secrets-pass/"

        # ctrl-x ctrl-e
        autoload -U edit-command-line
        zle -N edit-command-line
        bindkey '^xe' edit-command-line
        bindkey '^x^e' edit-command-line
      '';
    };
  };
}