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
|
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.config/zsh/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
# History
HISTFILE=$ZDOTDIR/zsh_history
HISTSIZE=1001
SAVEHIST=1000
setopt HIST_EXPIRE_DUPS_FIRST
setopt HIST_IGNORE_DUPS
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_IGNORE_SPACE
setopt HIST_FIND_NO_DUPS
setopt HIST_SAVE_NO_DUPS
# Various
export LANG=en_GB.UTF-8
unsetopt autocd
unsetopt beep
bindkey -v
zstyle :compinstall filename "$HOME/.zshrc"
# Other general user config
autoload -U colors && colors
autoload -U promptinit && promptinit
# Source .zshrc-xdg, which holds aliases to declutter the home directory
source "$XDG_CONFIG_HOME/zsh/.zshrc-xdg"
################################## orgd #######################################
export ORGD_TD_PATH="$HOME/docs/wr/td"
########## Configuration #############
if [[ ! -d ~/.config/zsh/zsh-autopair ]]; then
git clone https://github.com/hlissner/zsh-autopair ~/.config/zsh/zsh-autopair
fi
source ~/.config/zsh/zsh-autopair/autopair.zsh
autopair-init
# Source the abbrev file, which holds abbrev-alias and related settings.
source "$XDG_CONFIG_HOME/zsh/.zshrc-abbrev"
# allow sudo to make use of aliases
alias sudo="sudo "
# ls / exa
alias ls='exa -a --color=always'
alias ll="exa -a --header --long --git --time-style=long-iso --group"
abbrev-alias x="clear; ls"
abbrev-alias t="ls --tree"
# vim / nvim
abbrev-alias v="vim"
abbrev-alias n="nvim"
# music: mpd, ncmpcpp, mpc
abbrev-alias m="ncmpcpp"
abbrev-alias mps="mpc pause"
abbrev-alias mpl="mpc play"
abbrev-alias mst="mpc stop"
abbrev-alias mtg="mpc toggle"
abbrev-alias mnx="mpc next"
abbrev-alias mpr="mpc prev"
# backgrounds, wal...
alias rbg='feh --no-fehbg --bg-fill $(shuf -n1 -e ~/bgs/*)'
# cargo
abbrev-alias cb="cargo build"
abbrev-alias cbr="cargo build --release"
# other
abbrev-alias r="newsboat"
# documents
abbrev-alias p="zathura"
abbrev-alias o="libreoffice --writer"
abbrev-alias b="bat"
# Source .zshrc-git, which contains all Git commands and aliases
# TODO: add command to push to all remote repos, e.g. github, origin and gitlab
source "$XDG_CONFIG_HOME/zsh/.zshrc-git"
# Source .zshrc-mk, which contains mkwr, mn, lle, and other mk~ commands
source "$XDG_CONFIG_HOME/zsh/.zshrc-mk"
# Source .zshrc-fn, which contains various miscellaneous functions
source "$XDG_CONFIG_HOME/zsh/.zshrc-fn"
# misc
alias pkg-query="pacman -Qq | fzf --preview 'pacman -Qil {}' --layout=reverse --bind 'enter:execute(pacman -Qil {} | less)'"
autoload -Uz compinit
compinit
# End of lines added by compinstall
# z - must go after compinit
eval "$(zoxide init zsh --cmd cd)"
# Sourcing for zsh
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme
# To customize prompt, run `p10k configure` or edit ~/.config/zsh/.p10k.zsh.
[[ ! -f ~/.config/zsh/.p10k.zsh ]] || source ~/.config/zsh/.p10k.zsh
|