blob: 316401aeec67442b2bc129409516e05e16a4d818 (
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
|
# The following lines were added by compinstall
zstyle ':completion:*' completer _expand _complete _ignored _approximate
zstyle ':completion:*' group-name ''
zstyle ':completion:*' list-colors ''
zstyle ':completion:*' matcher-list '+' '+m:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'l:|=* r:|=*' 'r:|[._-]=* r:|=*'
zstyle ':completion:*' menu select=5
zstyle ':completion:*' select-prompt '%SScrolling active: current selection at %p%s'
zstyle :compinstall filename '/home/julian/.zshrc'
autoload -Uz compinit
compinit
#
# End of lines added by compinstall
# Lines configured by zsh-newuser-install
export HISTFILE=~/.zsh_history
export HISTFILESIZE=1000000000
export HISTSIZE=1000000
export SAVEHIST=1000000
export HISTTIMEFORMAT="%F %T "
setopt INC_APPEND_HISTORY
setopt EXTENDED_HISTORY
setopt HIST_FIND_NO_DUPS
unsetopt beep
# End of lines configured by zsh-newuser-install
#
# Prompt setup
#
autoload -U colors && colors
function git_info {
local bname="$(git rev-parse --abbrev-ref HEAD 2> /dev/null)"
local statc=""
if [ -n "$bname" ]; then
if [ -n "$(git status --porcelain 2> /dev/null)" ]; then
# statc="%{\e[0;3${MNML_ERR_COLOR}m%}"
statc="%F{220}*"
fi
print "%F{075}(%F{078}$bname$statc%F{075})"
fi
}
if [ -z "$INNIXENV" ]; then
MAINCOL="%F{032}"
else
MAINCOL="%F{076}"
fi
setopt PROMPT_SUBST
PROMPT='$MAINCOL%~$(git_info)$MAINCOL %(!.#.>) %F{255}'
#
# General setting
#
# Same colors for tab completion and ls
eval "$(dircolors)"
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
# Expand with dots
# https://michael.thegrebs.com/2012/09/04/zsh-completion-waiting-dots/
expand-or-complete-with-dots() {
echo -n "\e[31m...\e[0m"
zle expand-or-complete
zle redisplay
}
zle -N expand-or-complete-with-dots
bindkey "^I" expand-or-complete-with-dots
# Shift-tab
zmodload zsh/complist
bindkey -M menuselect '^[[Z' reverse-menu-complete
#
# Keybinding
#
bindkey "^P" up-line-or-search
bindkey "^[[A" history-search-backward
bindkey "^[[B" history-search-forward
bindkey "^[[1;5C" forward-word
bindkey "^[[1;5D" backward-word
#
# Env
#
# export EDITOR=nvim
export EDITOR=vim
export SUDO_EDITOR=$EDITOR
# export LANG=en_US.UTF-8
export TERM="xterm-256color"
export PATH=$PATH:$HOME/Scripts/bin
export PATH=$PATH:$HOME/go/bin
export WORDCHARS='*?.[]~=&;!#$%^(){}<>'
#
# Alias
#
alias vim="$EDITOR"
alias ls='ls --color=auto'
alias etckeep="/usr/bin/git --git-dir=/etc/.git --work-tree=/etc/"
#
# Functions
#
function nixenv {
export INNIXENV="true"
SHELL=""
if [ "$#" -gt 0 ]; then
SHELL=$HOME/.nix-shells/$1
fi
RUN=zsh
if [ "$#" -gt 1 ]; then
RUN=$2
fi
nix-shell $SHELL --run $RUN
}
function gittr {
if [ $# -eq 0 ]
then
git push -u origin HEAD
return
fi
git push -u $1 HEAD
}
function goto {
$HOME/Scripts/goto $@
if [ $? -eq 3 ]; then
cd $(</tmp/where)
echo cd $(</tmp/where)
fi
}
|