-
Notifications
You must be signed in to change notification settings - Fork 1
/
.zshrc
83 lines (59 loc) · 2.04 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
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
# Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh
ZSH_THEME="robbyrussell"
# Get ride of annoying prompt to upgrade, just do it!
DISABLE_UPDATE_PROMPT=true
export NVM_AUTO_USE=true
plugins=($(<~/Configuration-Files/zshes/plugins.txt))
source $ZSH/oh-my-zsh.sh
# Customize to your needs...
export PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
# set vim as editor
export VISUAL=vim
export EDITOR="$VISUAL"
#####################
# KJG's Customization
#####################
# Terminal Settings
bindkey -M viins 'jj' vi-cmd-mode
bindkey -v
# History
source ~/Configuration-Files/zshes/history.zsh
source ~/Configuration-Files/zshes/clipboardHistory.zsh
# Folder Nav
source ~/Configuration-Files/zshes/folder-nav.zsh
# Open Config Files
source ~/Configuration-Files/zshes/config.zsh
# Deploy
source ~/Configuration-Files/zshes/deploy.zsh
# load git aliases
source ~/Configuration-Files/zshes/git.zsh
# load docker shortcuts
source ~/Configuration-Files/zshes/docker.zsh
# load in path exports
source ~/Configuration-Files/zshes/path.zsh
# load other functions
source ~/Configuration-Files/zshes/functions/main.zsh
# load in histdb
source ~/Configuration-Files/zshes/histdb.zsh
# load in any custom private scripts
source ~/Dropbox/KJG/Development/scripts.zsh
# switch terraform versions on directory change
source ~/Configuration-Files/zshes/tfswitch.zsh
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH="$PATH:$HOME/.rvm/bin"
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/Users/khaliqgant/miniforge3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/Users/khaliqgant/miniforge3/etc/profile.d/conda.sh" ]; then
. "/Users/khaliqgant/miniforge3/etc/profile.d/conda.sh"
else
export PATH="/Users/khaliqgant/miniforge3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh