-
Notifications
You must be signed in to change notification settings - Fork 1
/
zshrc
43 lines (34 loc) · 877 Bytes
/
zshrc
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
set -o allexport && setopt appendhistory autocd && bindkey -e
LC_CTYPE=en_US.UTF-8
LANG=en_US.UTF-8
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
EDITOR="emacsclient -t"
GIT_EDITOR=$EDITOR
ZSH=$HOME/.oh-my-zsh
ZSH_THEME="lambda"
DISABLE_AUTO_UPDATE=false
DISABLE_UPDATE_PROMPT=false
DISABLE_AUTO_TITLE=true
ZSH_DISABLE_COMPFIX=false
# See discussion of double-paste problem here:
# https://github.com/ohmyzsh/ohmyzsh/issues/9562
DISABLE_MAGIC_FUNCTIONS=true
plugins=(docker docker-compose git tmux sudo systemd mise)
source $ZSH/oh-my-zsh.sh
if [ -f $/.programming.zsh ]; then
source ~/.programming.zsh
fi
if [ -f ~/.zshalias ]; then
source ~/.zshalias
fi
if [ -f ~/.completions.zsh ]; then
source ~/.completions.zsh && compinit
fi
if [ -f ~/.tokens.zsh ]; then
source ~/.tokens.zsh
fi
PATH=$HOME/bin:$HOME/.local/bin:$PATH
GPG_TTY=$(tty)
export GPG_TTY