summaryrefslogtreecommitdiffstats
path: root/lass/2configs/zsh.nix
blob: b221d7677644cf93aa83ed21c69e65af24c58d49 (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
{ config, lib, pkgs, ... }:
{
  programs.zsh = {
    enable = true;
    shellInit = ''
      #disable config wizard
      zsh-newuser-install() { :; }
    '';
    interactiveShellInit = ''
      #unsetopt nomatch
      setopt autocd extendedglob
      bindkey -e
      zstyle :compinstall filename '/home/lass/.zshrc'

      #history magic
      bindkey "" up-line-or-local-history
      bindkey "" down-line-or-local-history

      up-line-or-local-history() {
          zle set-local-history 1
          zle up-line-or-history
          zle set-local-history 0
      }
      zle -N up-line-or-local-history
      down-line-or-local-history() {
          zle set-local-history 1
          zle down-line-or-history
          zle set-local-history 0
      }
      zle -N down-line-or-local-history

      setopt share_history
      setopt hist_ignore_dups
      # setopt inc_append_history
      bindkey '^R' history-incremental-search-backward

      #C-x C-e open line in editor
      autoload -z edit-command-line
      zle -N edit-command-line
      bindkey "^X^E" edit-command-line

      #completion magic
      fpath=(~/.zsh/completions $fpath)
      autoload -Uz compinit
      compinit
      zstyle ':completion:*' menu select

      #enable automatic rehashing of $PATH
      zstyle ':completion:*' rehash true


      #eval $( dircolors -b ~/.LS_COLORS )

      # export MANPAGER='sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g" | vim -R -c "set ft=man nonu nomod nolist" -'

      #beautiful colors
      alias ls='ls --color'
      zstyle ':completion:*:default' list-colors ''${(s.:.)LS_COLORS}

      #emacs bindings
      bindkey "[7~" beginning-of-line
      bindkey "[8~" end-of-line
      bindkey "Oc" emacs-forward-word
      bindkey "Od" emacs-backward-word

      #aliases
      alias ll='ls -l'
      alias la='ls -la'
      alias pinginet='ping 8.8.8.8'
      alias du='du -hd1'
      alias qiv="qiv -f -m"
      alias zshres="source ~/.zshrc"

      #fancy window title magic
      case $TERM in
        (*xterm* | *rxvt*)

          # Write some info to terminal title.
          # This is seen when the shell prompts for input.
          function precmd {
            print -Pn "\e]0;%(1j,%j job%(2j|s|); ,)%~\a"
          }
          # Write command and args to terminal title.
          # This is seen while the shell waits for a command to complete.
          function preexec {
            printf "\033]0;%s\a" "$1"
          }
        ;;
      esac
    '';
    promptInit = ''
      # TODO: figure out why we need to set this here
      HISTSIZE=900001
      HISTFILESIZE=$HISTSIZE
      SAVEHIST=$HISTSIZE

      autoload -U promptinit
      promptinit

      error='%(?..%F{red}%?%f )'

      case $UID in
        0)
          username='%F{red}root%f '
          ;;
        1337)
          username=""
          ;;
        *)
          username='%F{blue}%n%f '
          ;;
      esac

      if test -n "$SSH_CLIENT"; then
        PROMPT="$error$username@%F{magenta}%M%f %~ "
      else
        PROMPT="$error$username%~ "
      fi
    '';
  };
  users.defaultUserShell = "/run/current-system/sw/bin/zsh";
}