summaryrefslogtreecommitdiff
path: root/lib/common.nix
blob: 23fbead3bed2677050a058a1bf862976ca5e3c23 (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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
{ pkgs, lib, ... }:

let
  inherit (import ./const.nix) fontSize homedir gpgid;
  locale = "en_US.UTF-8";
in {
  nixpkgs.overlays = [ (import ../overlay.nix) ];
  home = {
    stateVersion = "18.09";
    sessionVariables = {
      GPGID = gpgid;
      EDITOR = "vim";
      LANG = locale;
      # LC_ALL = locale; # bash prints an error when I try to set this
      LANGUAGE = locale;
      PATH = "${homedir}/bin:${homedir}/.local/bin:$PATH";
      PAGER = "less"; # "bat --theme=ansi";
      XTERM_LOCALE = locale;
      PYTHONSTARTUP = "${homedir}/.pythonrc";

      FD_OPTIONS = "--follow --exclude .git";
      BAT_PAGER = "less -R";
      FORGIT_FZF_DEFAULT_OPTS = ''
        --exact
        --border
        --cycle
        --reverse
      '';
    };

    # From the command line:
    #     setxkbmap -option caps:ctrl_modifier
    keyboard.options = [ "caps:ctrl_modifier" ];

    file = {
      yubikeys = {
        source = ./authorized_yubikeys;
        target = ".yubico/authorized_yubikeys";
      };
      editorconfig = {
        source = ./editorconfig;
        target = ".editorconfig";
      };
      pythonrc = {
        source = ./pythonrc;
        target = ".pythonrc";
      };
      pdbrc = {
        source = ./pythonrc;
        target = ".pdbrc";
      };
      # Idk why this doesn't work, less says it can't use my lesskey file
      #less = {
      #  source = ./lesskey;
      #  target = ".less";
      #};
      userstyles = {
        source = ./userstyles.css;
        target = ".userstyles.css";
      };
    };
  };

  fonts.fontconfig.enable = true;

  programs = {
    home-manager = {
      enable = true;
    };

    starship = {
      # export PS1='$(printf "%3.*s" $? $?)ϟ '
      enable = true;
      settings = {
        format = lib.concatStrings [
          #"$username"
          "$hostname"
          "$directory"
          "$git_branch"
          "$git_state"
          "$git_status"
          "$cmd_duration"
          "$line_break"
          "$character"
        ];
        directory.style = "blue";
        character = {
          success_symbol = "[ϟ](white)";
          error_symbol = "[ϟ](red)";
        };
        git_branch = {
          format = "[$branch]($style)";
          style = "bright-black";
        };
        git_status = {
          format =
            ''[[(*$conflicted$untracked$modified$staged$renamed$deleted)](218) ($ahead_behind$stashed)]($style)'';
          style = "cyan";
          conflicted = "​";
          untracked = "​";
          modified = "​";
          staged = "​";
          renamed = "​";
          deleted = "​";
          stashed = "≡";
        };
        git_state = {
          format = "\([$state( $progress_current/$progress_total)]($style)\) ";
          style = "bright-black";
        };

        cmd_duration = {
          format = "[$duration]($style) ";
          style = "yellow";
        };
      };
    };

    readline = {
      enable = true;
      variables = {
        keyseq-timeout = 1200;
        colored-stats = true;
        colored-completion-prefix = true;
        expand-tilde = true;
      };
      bindings = {
        # wrap a command in '$(...| fzf)'
        "\\C-xf" = ''"\C-e | fzf)\C-a(\C-a$\C-b\C-a"'';
        "\\e\\C-f" = "dump-functions"; # help
        "\\e\\C-o" = "dabbrev-expand"; # expand
        "\\e\\C-v" = "dump-variables"; # help
        "\\em" = "beginning-of-line";
        # emacs-like history navigation
        "\\en" = "next-history";
        "\\ep" = "previous-history";
      };
      extraConfig = ''
        $if Guile
          "\C-o": "()\C-b"
        $endif
      '';
    };

    fzf = {
      enable = true;
      enableBashIntegration = true;
      defaultCommand = "rg --files";
      changeDirWidgetCommand = "fd --type d"; # M-c
      changeDirWidgetOptions = ["--preview 'tree -C {} | head -100'"];
      fileWidgetCommand = "fd --type f";
      fileWidgetOptions = ["--preview 'head -n100 {}'"];
      historyWidgetOptions = ["--sort" "--exact"];
      tmux.enableShellIntegration = true;
      tmux.shellIntegrationOptions = [ "-p 70%" ];
    };

    git = {
      enable = true;
      userName = "Ben Sima";
      userEmail = "ben@bsima.me";
      ignores = [ "*~" "*.swp" ];
      package = pkgs.gitAndTools.gitFull;
      signing = {
        key = gpgid;
        # for some reason this fails...
        #gpgPath =
        #  let
        #    script = pkgs.writeScriptBin "my-ots-git-gpg-wrapper" ''
        #      #!/usr/bin/env bash
        #      set -euxo pipefail
        #      ${pkgs.opentimestamps-client}/bin/ots-git-gpg-wrapper --gpg-program ${pkgs.gnupg}/bin/gpg $@
        #    '';
        #  in
        #    "${script}/bin/my-ots-git-gpg-wrapper";
      };
      aliases = {
        authors = "shortlog -s -n";
        slog = "log --stat";
        glog = ''log --decorate --all --graph --pretty=format:"%Cred%h%Creset %an: %s - %Creset %C(yellow)%d%Creset %Cgreen(%cr)%Creset" --abbrev-commit --date=relative'';
        logbr = "log -r origin/HEAD..HEAD";
        mylog = ''!git log --author=$USER --decorate --pretty=format:"%Cred%h%Creset %s%Creset%C(yellow)%d%Creset %Cgreen(%cr)%Creset" --abbrev-commit --date=relative'';
        mrd = "!cat <(git shortlog origin/HEAD..HEAD) <(git diff --stat origin/HEAD...HEAD)";
        extend = "!git commit --fixup $1 && git rebase --autosquash $1~";
        mr = lib.concatStringsSep " " [
          "!git push"
          "-o merge_request.create"
          "-o merge_request.merge_when_pipeline_succeeds"
          "-o merge_request.label=ReleaseUpdate::NotRequired"
          "-o merge_request.assign=$USER"
          # disable these two args bc gitlab just uses the commit message anyway
          # ''-o merge_request.title="$(git log -n1 --format=%s)"''
          # ''-o merge_request.description="$(git log -n --format=%b)"''
        ];
      };
      extraConfig = {
        commit.template = "${./git-commit-template}";
        commit.verbose = "true";
        fetch.showForcedUpdate = "false";
        init.defaultBranch = "main";
        log.date = "local";
        merge.tool = "fugitive";
        mergetool.fugitive.cmd = ''vim -f -c "Gvdiffsplit!" "$MERGED"'';
        pull.rebase = "true";
        push.default = "current";
        remote.pushDefault = "origin";
        sendemail = {
          #smtpuser = "ben@bsima.me";
          #smtpserverport = 587;
          smtpserver = "${homedir}/bin/sendmail";
          chainreplyto = false;
          composeencoding = "UTF-8";
          annotate = "yes";
          cccmd = "git-contacts";
        };
      };
    };

    jujutsu = {
      enable = true;
      enableBashIntegration = true;
    };

    tmux = {
      enable = true;
      aggressiveResize = false;
      baseIndex = 0;
      clock24 = true;
      customPaneNavigationAndResize = false;
      disableConfirmationPrompt = false;
      escapeTime = 0;
      historyLimit = 10000;
      keyMode = "emacs";
      newSession = false;
      resizeAmount = 5;
      reverseSplit = false;
      secureSocket = false;
      sensibleOnTop = true;
      #shell = "${pkgs.bash}/bin/bash";
      shortcut = "a";
      terminal = "xterm-256color";
      tmuxinator.enable = false;
      tmuxp.enable = false;

      extraConfig = ''
        # Automatically set window title
        set-window-option -g automatic-rename on
        set-option -g set-titles on
        set -g xterm-keys on
        setw -g mouse on
        ## Panes
        # Split panes
        bind-key | split-window -h -c "#{pane_current_path}"
        bind-key - split-window -v -c "#{pane_current_path}"
        # Send/join panes
        bind-key j command-prompt -p "join pane from:"  "join-pane -s '%%'"
        bind-key s command-prompt -p "send pane to:"  "join-pane -t '%%'"
        # Use Alt-vim keys without prefix key to switch panes
        bind -n M-h select-pane -L
        bind -n M-j select-pane -D
        bind -n M-k select-pane -U
        bind -n M-l select-pane -R
        # Use Alt-vim capitalized keys without prefix key to resize panes
        bind -n M-H resize-pane -L
        bind -n M-J resize-pane -D
        bind -n M-K resize-pane -U
        bind -n M-L resize-pane -R
        # Shift arrow to switch windows
        bind -n S-Left  previous-window
        bind -n S-Right next-window
        # Set current window pane to 80 columns
        bind-key E resize-pane -x 80
        # cycle pane layout
        bind-key N next-layout
        bind-key P previous-layout
        # Toggle synchronizing panes
        bind-key y setw synchronize-panes
        ## Text manipulation
        # vim-like copy/paste
        setw -g mode-keys vi
        bind [ copy-mode
        bind ] paste-buffer
        # copy/paste with xclip
        bind-key -Tcopy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -sel clip -i'
        # select buffer to paste from
        bind Space choose-buffer
        # status line text
        set -g status-left-length 30
        set -g status-left '#S | #(whoami)@#(hostname) | '
        set -g status-right '~%Y.%m.%d..%H.%M'
        set -g renumber-windows on
        # white-ish background with dark-grey text
        set -g status-style bg=colour0,fg=colour13
        # highlight current window
        set -g window-status-current-style fg=colour0,bg=colour13
        set -g window-status-format '#I) #W '
        set -g window-status-current-format '#I) #W '
        # special thing for groq's SFT thing
        set -g update-environment "SFT_AUTH_SOCK SSH_AUTH_SOCK SSH_CONNECTION"
      '';

      plugins = with pkgs.tmuxPlugins; [
        extrakto
        tmux-fzf
      ];
    };

    urxvt = let font = name: size: "xft:${name}:size=${toString size}:ant"; in {
      enable = true;
      fonts = [
        (font "Fira Code" fontSize)
        (font "FiraCodeNerdfont" fontSize)
        "xft:Noto Emoji"
      ];
      #keybindings = {
      #  # why don't any of these work?
      #  "Shift-Control-C" = "eval:selection_to_clipboard";
      #  "Shift-Control-V" = "eval:paste_clipboard";
      #  "Shift-Control-+" = "command:\033]710;${font 12}\007\033]711;${font 12}\007";
      #  "Shift-Control--" = "command:\033]710;${font 8}\007\033]711;${font 8}\007";
      #};
      iso14755 = true; # unicode chars
      #transparent = true;
      #shading = 10;
    };

    direnv = {
      enable = true;
      enableBashIntegration = true;
      nix-direnv.enable = true;
    };

    vim = {
      enable = true;
      #vimAlias = true;
      #viAlias = true;
      #vimdiffAlias = true;
      plugins = with pkgs.vimPlugins; [
        base16-vim
        editorconfig-vim
        vim-sensible
        vim-fugitive
        vim-colors-solarized
        vim-sexp-mappings-for-regular-people
        # vim-ripgrep # not in nixpkgs :(
        rainbow_parentheses
        vim-plug # just in case
        vim-addon-local-vimrc
        fzf-vim
        (pkgs.vimUtils.buildVimPlugin {
          pname = "photon.vim";
          version = "2022.03.14";
          src = pkgs.fetchFromGitHub {
            owner = "axvr";
            repo = "photon.vim";
            rev = "32b42c8a12bf9588259b76f3df6807960e0d7386";
            sha256 = "sha256-kM7WP03uE20yr0nCusB3ncHzgtEYxqNzoNoQGen9p+o=";
          };
          meta.homepage = "https://github.com/axvr/photon.vim";
        })
        (pkgs.vimUtils.buildVimPlugin {
          pname = "skull-vim";
          version = "2022.03.14";
          src = pkgs.fetchFromGitHub {
            owner = "kadekillary";
            repo = "skull-vim";
            rev = "abb9d7120c63aad6f9acc26d31c948a93f352e94";
            sha256 = "sha256-tu5aDRjHZtXKoyQBbMEhzjGrRl4GZD121ybs7oNylvs=";
          };
          meta.homepage = "https://github.com/kadekillary/skull-vim";
        })
      ];
      extraConfig = builtins.readFile ./vimrc;
    };

    info.enable = true;
    man.enable = true;

    nix-index = {
      enable = true;
      enableBashIntegration = true;
    };

    bash = {
      enable = true;
      initExtra = ''
        #DIR=~/.nix-profile/etc/profile.d
        #[[ -f "$DIR/nix.sh" ]] && . "$DIR/nix.sh"
        #[[ -f "$DIR/hm-session-vars.sh" ]] && . "$DIR/hm-session-vars.sh"
        [[ -f "${homedir}/.bashrc.local" ]] && . "${homedir}/.bashrc.local"
        source "${pkgs.forgit}/share/bash/forgit.plugin.zsh"
        function fcd() {
          local dir;
          echo "exit with ^D"
          while :
          do
            dir="$(ls -a1p | grep '/$' | grep -v '^./$' | fzf --height 40% --reverse --no-multi --preview 'pwd' --preview-window=up,1,border-none --no-info)"
            if [[ -z "$dir" ]]; then
              break
            else
              echo -n "$dir "
              cd "$dir"
              ls
            fi
          done
        }
        function up() {
          N=$1
          P=$PWD
          for (( i=1; i<=$N; i++ ))
          do
            P+="/.."
          done
          cd "$P"
        }
        function regex() {
          gawk 'match($0,/'$1'/, ary) {print ary['\$\{2:-'0'}']}';
        }

        # kill a process with fzf
        fkill() {
          local pid
          pid=$(ps -ef | sed 1d | fzf -m --bind "ctrl-a:select-all"| awk '{print $2}')

          if [ "x$pid" != "x" ]
          then
            echo $pid | xargs kill -9
          fi
        }

        # https://gist.github.com/junegunn/8b572b8d4b5eddd8b85e5f4d40f17236
        is_in_git_repo() {
          git rev-parse HEAD > /dev/null 2>&1
        }

        fzf_down() {
          fzf --height 50% --min-height 20 --border \
            --bind 'ctrl-/:change-preview-window(hidden|90%|)' \
            --bind 'pgup:preview-page-up' \
            --bind 'pgdn:preview-page-down' \
            "$@"
        }

        _gf() {
          is_in_git_repo || return
          git -c color.status=always status --short |
          fzf_down -m --ansi --nth 2..,.. \
            --preview '(git diff --color=always -- {-1} | sed 1,4d; cat {-1}) | head -500' |
          cut -c4- | sed 's/.* -> //'
        }

        _gp() {
          is_in_git_repo || return
          stg series |
          fzf_down -m --ansi --preview 'stg show -O --color=always {2}' |
          cut -d' ' -f2
        }

        _gb() {
          is_in_git_repo || return
          git branch -a --color=always | grep -v '/HEAD\s' | sort |
          fzf_down --ansi --multi --tac --preview-window right:70% \
            --preview 'git log --oneline --graph --date=short --color=always --pretty="format:%C(auto)%cd %h%d %s" $(sed s/^..// <<< {} | cut -d" " -f1) | head -'$LINES |
          sed 's/^..//' | cut -d' ' -f1 |
          sed 's#^remotes/##'
        }

        _gt() {
          is_in_git_repo || return
          git tag --sort -version:refname |
          fzf_down --multi --preview-window right:70% \
            --preview 'git show --color=always {} | head -'$LINES
        }

        _gh() {
          is_in_git_repo || return
          git log --date=short --format="%C(green)%C(bold)%cd %C(auto)%h%d %s (%an)" --graph --color=always |
          fzf_down --ansi --no-sort --reverse --multi --exact \
            --bind 'ctrl-s:toggle-sort' \
            --header 'Press CTRL-S to toggle sort' \
            --preview 'grep -o "[a-f0-9]\{7,\}" <<< {} | xargs git show --color=always |grep -o "[a-f0-9]\{7,\}"
        }

        _gr() {
          is_in_git_repo || return
          git remote -v | awk '{print $1 "\t" $2}' | uniq |
          fzf_down --tac \
            --preview 'git log --oneline --graph --date=short --pretty="format:%C(auto)%cd %h%d %s" {1} | head -200' |
          cut -d$'\t' -f1
        }
        bind '"\er": redraw-current-line'
        bind '"\C-g\C-f": "$(_gf)\e\C-e\er"'
        bind '"\C-g\C-p": "$(_gp)\e\C-e\er"'
        bind '"\C-g\C-b": "$(_gb)\e\C-e\er"'
        bind '"\C-g\C-t": "$(_gt)\e\C-e\er"'
        bind '"\C-g\C-h": "$(_gh)\e\C-e\er"'
        bind '"\C-g\C-r": "$(_gr)\e\C-e\er"'
        bind '"\C- ": "$(p)\e\C-e\er"'
      '';
      shellAliases = {
        q = "que";
        qd = ''que pub/bsnotify - <<< "done"'';
        ".." = "__HM_SESS_VARS_SOURCED= .";
        day = "date +%a";
        ddate = "date +%Y.%m.%d";
        dday = "date +%A";
        e = "emacsclient -nw"; # emacs in a terminal
        f = "fossil";
        g = "git";
        ga = "git add -A";
        gb = "git branch";
        gc = "git commit";
        gca = "git commit -a";
        gco = "git checkout";
        gd = "git diff";
        gl = "git pull --prune";
        gp = "git push origin HEAD";
        gs = "git status -sb";
        hs = "NIX_PATH=$HOME/.nix-defexpr/channels$\{NIX_PATH:+:\}$NIX_PATH home-manager switch";
        ll = "ls -lah";
        rm = "rm -i";
        s = ''
          INITIAL_QUERY="" && \
          RG_PREFIX="rg --column --line-number --no-heading --color=always --smart-case " && \
          FZF_DEFAULT_COMMAND="$RG_PREFIX '$INITIAL_QUERY'" && \
          fzf --bind "change:reload:$RG_PREFIX {q} || true" \
            --ansi --phony --query "$INITIAL_QUERY" \
            --height=50% --layout=reverse
        '';
        showpath = ''echo $PATH | sed "s/:/\n/g"'';
        tdate = "date +%Y.%m.%d..%H.%M";
        ttime = "date +%H.%M";
        typeless = "history | tail -n 20000 | sed 's/.*  //' | sort | uniq -c | sort -g | tail -n 100";
        v = "vim $(fzf --preview='bat --color=always {}' --preview-window right:70%)";
        "v." = "vim .";
      };
    };
  };
}