-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzshrc
56 lines (46 loc) · 1.08 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
# Path to your oh-my-zsh installation.
export ZSH="$HOME/.oh-my-zsh"
if [[ `uname -m` == 'arm64' ]]; then
export PATH=/opt/homebrew/bin:$PATH
fi
export PATH=$PATH:$HOME/.yarn/bin
# Don't save history for less
export LESSHISTFILE=/dev/null
plugins=(
zsh-autosuggestions
)
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#424242"
BULLETTRAIN_KCTX_BG=magenta
BULLETTRAIN_PROMPT_CHAR=
BULLETTRAIN_PROMPT_SEPARATE_LINE=false
BULLETTRAIN_PROMPT_ORDER=(
time
kctx
status
custom
dir
git
)
ZSH_THEME="bullet-train"
export XDG_CONFIG_HOME=$HOME/.config
export COLORTERM=truecolor
export BAT_THEME="Visual Studio Dark+"
export EDITOR=nvim
source $ZSH/oh-my-zsh.sh
alias vim=nvim
alias nvimdiff="nvim -d"
alias tmux="tmux -2"
alias ipython="python3 -m IPython"
alias ls="lsd"
alias python=python3
alias pip=pip3
LANG="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_CTYPE="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_ALL="en_US.UTF-8"
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
[ -f ~/.extras.zsh ] && source ~/.extras.zsh