-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzsh_profile
37 lines (30 loc) · 1.01 KB
/
zsh_profile
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
# Add `~/bin` to the `$PATH`
export PATH="$HOME/.local/bin:$PATH";
#export TERM="xterm-256color"
# Load the shell dotfiles, and then some:
# * ~/.path can be used to extend `$PATH`.
# * ~/.extra can be used for other settings you don’t want to commit.
for file in ~/.{zsh_prompt,zsh_aliases}; do
[ -r "$file" ] && [ -f "$file" ] && source "$file";
done;
unset file;
autoload -Uz bashcompinit && bashcompinit
# Set ls colors
export CLICOLOR=1
#export LSCOLORS=ExGxBxDxCxEgEdxbxgxcxd
export GIT_EDITOR=vim
export EDITOR=vim
## >>> conda initialize >>>
## !! Contents within this block are managed by 'conda init' !!
#__conda_setup="$('/Users/mpude/opt/anaconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
#if [ $? -eq 0 ]; then
# eval "$__conda_setup"
#else
# if [ -f "/Users/mpude/opt/anaconda3/etc/profile.d/conda.sh" ]; then
# . "/Users/mpude/opt/anaconda3/etc/profile.d/conda.sh"
# else
# export PATH="/Users/mpude/opt/anaconda3/bin:$PATH"
# fi
#fi
#unset __conda_setup
## <<< conda initialize <<<