export SCRUM_DIR=~/Documents/scrum/
+export PATH=/usr/local/opt/gnu-sed/libexec/gnubin:$PATH
+export PATH=/usr/local/opt/make/libexec/gnubin:$PATH
+
##################################################
#
# Bash Completion Scripts
function prompt_char {
if ! git rev-parse --git-dir > /dev/null 2>&1; then
- echo '$'
+ echo '𝝺'
return 0
fi
local GIT_BRANCH=$(git branch 2>/dev/null| sed -n '/^\*/s/^\* //p')
echo "($GIT_BRANCH) $"
}
-export PS1='\[$ORANGE\]\u\[$RESET\] @ \[$YELLOW\]\h\[$RESET\] in \[$GREEN\]\w\[$RESET\]\n\[$BASE2\]$(prompt_char)\[$RESET\] '
+export PS1='\[$ORANGE\]\u\[$RESET\] @ \[$YELLOW\]\h\[$RESET\] in \[$GREEN\]\w\[$RESET\]\n$(prompt_char) '
##################################################
#
export PLAY_PATH="/usr/local/play"
export PATH=$PATH:$PLAY_PATH
+export SBT_CREDENTIALS=$HOME/.ivy2/.credentials
+
##################################################
#
# Go Stuffs
alias grep="grep --color=auto"
[[ -s "$HOME/.profile" ]] && source "$HOME/.profile"
+
+export JAVA_11_HOME=$(/usr/libexec/java_home -v11)
+alias java11='export JAVA_HOME=$JAVA_11_HOME'
+
+java11
call pathogen#infect()
filetype plugin indent on
-
syntax enable
+
+let g:solarized_termcolors=256
+let g:solarized_termtrans=1
set background=dark
+colorscheme solarized
+
if has('gui_running')
- colorscheme solarized
set colorcolumn=80
set cursorline
-
- if has('transparency')
- set transparency=4
- endif
endif
set autoindent
set mouse=a
set ttymouse=xterm2
set guioptions-=T
-set guifont=Menlo:h12
+set guifont=Menlo:h14
map <C-t> :tabnew<cr>
map <C-tab> :tabnext<cr>
let mapleader=","
let NERDTreeRespectWildIgnore=1
let NERDTreeShowHidden=1
-let NERDTreeIgnore=['\.pyc$', '__pycache__']
+let NERDTreeIgnore=['\.pyc$', '__pycache__', '\.swp$']
let g:ale_set_loclist=0
let g:ale_set_quickfix=1
au BufNewFile,BufRead *.less set filetype=less
au BufNewfile,BufRead Jenkinsfile set filetype=groovy
au BufNewFile,BufRead *.md,*.txt setlocal textwidth=80
-"au BufWritePost *.py call Flake8()
+au BufWritePost *.py call Flake8()
au BufNewFile,BufRead *.dat setlocal noexpandtab
au BufNewFile,BufRead *.jade setlocal noexpandtab