-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
34 lines (28 loc) · 835 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
HISTFILE=~/.histfile
HISTSIZE=100000
SAVEHIST=100000
ZSH_CONFIG="${HOME}/.config/zsh"
ANTIGEN_DIR="$ZSH_CONFIG/antigen"
DISABLE_AUTO_TITLE=true
bindkey -e # emacs key bindings
source "$ZSH_CONFIG/aliases.zsh"
source "$ZSH_CONFIG/antigen.zsh"
antigen use oh-my-zsh
antigen bundle git
antigen bundle git-extras
antigen bundle npm
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-completions
antigen theme $ZSH_CONFIG soyuka
antigen apply
zstyle :compinstall filename '/home/soyuka/.zshrc'
plugins=(zsh-completions colored-man-pages)
autoload -U compinit
compinit
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
eval "$(zoxide init zsh)"
# corepack enable
# source /usr/share/nvm/init-nvm.sh
# Added by LM Studio CLI (lms)
export PATH="$PATH:/home/soyuka/.lmstudio/bin"
source /etc/profile.d/google-cloud-cli.sh