blob: aa473b2ae3b4fd26a8c7975e83588d55ba9cd313 (
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
|
# zshrc -*- mode: sh; lexical-binding: t; -*-
## Aliases
setopt autocd
export TERM=xterm-256color
alias vim="nvim"
alias clip="xclip -sel clip"
alias paste="xclip -o"
alias exa="exa --color=always --group-directories-first"
alias ls="exa"
alias lt="exa -T"
alias l="exa -al"
alias md="mkdir"
alias fzf="fzf --layout=reverse --height=20"
alias suctl="systemctl --user"
alias uemacs="emacs -q -l '~/.config/emacs/init.el'"
alias sedit="eserver -a emacs -c"
alias dre="doom sync"
## ZSH
export ZSH_THEME="af-magic"
PS1="%B%F{blue}[%(4~|...|)%3~]
%F{white}λ %b%f%k"
setopt histignorealldups sharehistory
autoload -U colors && colors
autoload -U compinit
HISTSIZE=10000
SAVEHIST=10000
zstyle ':completion:*' menu select
zmodload zsh/complist
compinit
_comp_options+=(globdots)
zstyle ':completion:*' auto-description 'specify: %d'
zstyle ':completion:*' completer _expand _complete _correct _approximate
zstyle ':completion:*' format 'Completing %d'
zstyle ':completion:*' group-name ''
zstyle ':completion:*' menu select=2 eval "$(dircolors -b)"
zstyle ':completion:*:default' list-colors ${(s.:.)LS_COLORS}
zstyle ':completion:*' list-colors ''
zstyle ':completion:*' matcher-list '' 'm:{a-z}={A-Z}' 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=* l:|=*'
zstyle ':completion:*' menu select=long
zstyle ':completion:*' select-prompt %SScrolling active: current selection at %p%s
zstyle ':completion:*' use-compctl false
zstyle ':completion:*' verbose true
zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31'
zstyle ':completion:*:kill:*' command 'ps -u $USER -o pid,%cpu,tty,'
## Vim binds
bindkey -v
autoload -z edit-command-line
zle -N edit-command-line
bindkey "^X^E" edit-command-line
# Menu
bindkey -M menuselect 'h' vi-backward-char
bindkey -M menuselect 'j' vi-up-line-or-history
bindkey -M menuselect 'k' vi-down-line-or-history
bindkey -M menuselect 'l' vi-forward-char
# Cursor
function zle-keymap-select {
if [[ ${KEYMAP} == vicmd ]] ||
[[ $1 = 'block' ]]; then
echo -ne '\e[1 q'
elif [[ ${KEYMAP} == main ]] ||
[[ ${KEYMAP} == viins ]] ||
[[ ${KEYMAP} = '' ]] ||
[[ $1 = 'beam' ]]; then
echo -ne '\e[5 q'
fi
}
zle -N zle-keymap-select
zle-line-init() {
zle -K viins # initiate `vi insert` as keymap (can be removed if `bindkey -V` has been set elsewhere)
echo -ne "\e[5 q"
}
zle -N zle-line-init
echo -ne '\e[5 q' # Use beam shape cursor on startup.
preexec() { echo -ne '\e[5 q' ;} # Use beam shape cursor for each new prompt.
## Programming
editor() {
nohup emacs $@ > /dev/null &
}
gentemplate() {
for var in ${@:2}; do
case $1 in
'c') git clone https://github.com/Oreodave/CTemplate $var;;
'cpp') git clone https://github.com/Oreodave/CPPTemplate $var;;
'python') git clone https://github.com/Oreodave/PythonTemplate $var;;
'node') git clone https://github.com/Oreodave/NodeTemplate $var;;
'ard') git clone https://github.com/Oreodave/ArduinoTemplate $var;;
'java') git clone https://github.com/Oreodave/JavaTemplate $var;;
*) return;;
esac
rm -rf $var/.git;
done
}
devour() {
$@ & disown; exit
}
## NVM config
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|