-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
40 lines (33 loc) · 971 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
export ZSH="$HOME/.oh-my-zsh"
export PATH="$HOME/.local/bin:$PATH"
export PATH="$HOME/.cargo/bin:$PATH"
export CLICOLOR=1 # Enable ls with colors
export TERM=xterm-256color
export EDITOR="nvim"
export BAT_THEME="Catppuccin Mocha"
export CONFIG="$HOME/.config"
export REPOS="$HOME/Repos"
export EXA_ICON_SPACING=2
# Add deno completions to search path
if [[ ":$FPATH:" != *":/Users/victor/.zsh/completions:"* ]]; then
export FPATH="/Users/victor/.zsh/completions:$FPATH";
fi
ZSH_THEME="refined"
plugins=(
git
vi-mode
zsh-autosuggestions
zsh-syntax-highlighting
colored-man-pages
)
source $ZSH/oh-my-zsh.sh
# Node Version Manager
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
# Load all config files
for file in ~/zshrc/*; do
source $file
done
eval "$(starship init zsh)"
. "/Users/victor/.deno/env"