-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
41 lines (31 loc) · 988 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
41
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
autoload -U colors && colors
autoload -Uz compinit && compinit
zstyle ':completion:*:*:git:*' script ~/dotfiles/git-completion.bash
fpath=(~/.zsh $fpath)
# Detect which `ls` flavor is in use
if ls --color > /dev/null 2>&1; then # GNU `ls`
colorflag="--color"
else # OS X `ls`
colorflag="-G"
fi
if [ -f ~/dotfiles/.shell_profile ]; then
. ~/dotfiles/.shell_profile
fi
if [ -f ~/dotfiles/.aliases ]; then
. ~/dotfiles/.aliases
fi
if [ -f ~/dotfiles/.private ]; then
. ~/dotfiles/.private
fi
if [ -f ~/dotfiles/.environments_vars ]; then
. ~/dotfiles/.environments_vars
fi
if [ -f ~/dotfiles/.functions.sh ]; then
. ~/dotfiles/.functions.sh
fi
# Setting PATH for Visual Studio Code (CLI usage)
export PATH="$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
export PATH="$PATH:/Users/remco/.asdf/installs/flutter/2.0.6-stable/bin"
export ANDROID_HOME="/usr/local/share/android-sdk"