aboutsummaryrefslogtreecommitdiffstats
path: root/zsh/.zshrc
blob: d6a21e2c7a3f3a208071b96ba5915dfae1db3702 (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
HISTFILE=~/.config/zsh/.zsh_history
HISTSIZE=500000
SAVEHIST=500000

fpath=(~/.local/share/zsh/completion $fpath)
zstyle :compinstall filename "$HOME/.config/zsh/.zshrc"

autoload -Uz colors \
             compinit \
             promptinit \
             edit-command-line \
             run-help \
             zmv

compinit
promptinit
colors

zmodload zsh/mapfile

setopt autocd \
       complete_aliases \
       dotglob \
       extended_history \
       hist_verify \
       hist_ignore_all_dups \
       hist_save_no_dups \
       hist_ignore_space \
       hist_reduce_blanks \
       inc_append_history \
       interactive_comments \
       numeric_glob_sort \
       no_bg_nice \
       print_exit_value \
       prompt_subst \
       notify

# Menu completion
zstyle ':completion:*' menu select

DEFAULT_COLOR="%{${fg[default]}%}"
function bold  { printf "%s%s%s" "%{%B%}" "$1" "%{%b%}" }
function red   { printf "%s%s%s" "%{${fg[red]}%}" "$1" "$DEFAULT_COLOR" }
function green { printf "%s%s%s" "%{${fg[green]}%}" "$1" "$DEFAULT_COLOR" }
function blue  { printf "%s%s%s" "%{${fg[blue]}%}" "$1" "$DEFAULT_COLOR" }
function cyan { printf "%s%s%s" "%{${fg[cyan]}%}" "$1" "$DEFAULT_COLOR" }
function magenta { printf "%s%s%s" "%{${fg[magenta]}%}" "$1" "$DEFAULT_COLOR" }
function yellow { printf "%s%s%s" "%{${fg[yellow]}%}" "$1" "$DEFAULT_COLOR" }
function black { printf "%s%s%s" "%{${fg[black]}%}" "$1" "$DEFAULT_COLOR" }
function white { printf "%s%s%s" "%{${fg[white]}%}" "$1" "$DEFAULT_COLOR" }
function prompt_user_color {
	(( UID )) && printf green || print red
}

PS1='$(yellow "$(bold %m)") \
$($(prompt_user_color) "$(bold %n)") \
$(blue "$(bold %~)") \
$(blue "$(bold %#)") '
RPS1=$'$(yellow $branch)'

function get_git_branch {
    if [[ -d .git ]]; then
        branch=" $(git rev-parse --abbrev-ref HEAD) "
    else
        branch=" "
    fi
}

# Print basic prompt to the window title
function precmd {
    print -Pn "\e];%n %~\a"
    get_git_branch
}

# Print the current running command's name to the window title
function preexec {
    local cmd=${1[(wr)^(*=*|sudo|exec|ssh|-*)]}
    print -Pn "\e];$cmd:q\a"
}


# Load all configs
#for f in ~/.config/zsh/zsh.d/*.zsh
#	source $f

source "$ZDOTDIR"/aliases.zsh
source "$ZDOTDIR"/keybindings.zsh

zle -N edit-command-line

if [[ -n "$VTE_VERSION" ]]; then
    source /etc/profile.d/vte.sh
    __vte_prompt_command
fi