blob: 7a3c26a3bde26fe633eec258586760a06f22a012 (
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
|
fpath+=("$XDG_CONFIG_HOME/zsh/themes")
zstyle :compinstall filename "$ZDOTDIR"/.zshrc
# Menu completion
zstyle ':completion:*' menu select
zstyle ':completion:*' use-cache on
zstyle ':completion:*' rehash yes
# Colors for file completion
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
autoload -Uz colors \
compinit \
promptinit \
edit-command-line \
run-help \
zmv
compinit
promptinit
colors
setopt autocd \
complete_aliases \
glob_dots \
extended_glob \
extended_history \
hist_verify \
hist_ignore_space \
inc_append_history_time \
numeric_glob_sort \
no_bg_nice \
print_exit_value \
prompt_subst \
notify
# "This associative array takes as keys the names of files; the resulting
# value is the content of the file"
zmodload zsh/mapfile
source "$ZDOTDIR"/keybindings.zsh
source "$ZDOTDIR"/aliases.zsh # aliases and functions.
if [[ -n "$VTE_VERSION" ]]; then
source /etc/profile.d/vte.sh
__vte_prompt_command
fi
if [[ -f "$ZDOTDIR"/rc.d/"$SHORTHOST" ]]; then
source "$ZDOTDIR"/rc.d/"$SHORTHOST"
fi
GPG_TTY=$(tty)
export GPG_TTY
prompt kyrias
|