[submodule "dotvim/bundle/jshint.vim"]
path = dotvim/bundle/jshint.vim
url = https://github.com/walm/jshint.vim.git
+[submodule "dotvim/bundle/typescript-vim"]
+ path = dotvim/bundle/typescript-vim
+ url = https://github.com/leafgarland/typescript-vim.git
export CLICOLOR=1
-export GREP_OPTIONS="--color=auto"
export GREP_COLOR="1;36"
export PYTHONPATH="/usr/local/lib/python2.7/site-packages:$PYTHONPATH"
export PYTHON_ENV_PATH=$HOME/env
color_prompt=yes
export SCRUM_DIR=~/Documents/scrum/
+export CHROME_BIN=`which chromium-browser`
##################################################
#
fi
alias jsoncb="pbpaste | python -mjson.tool | gvim -"
+alias grep="grep --color=auto"
# Setting PATH for Python 3.5
# The orginal version is saved in .bash_profile.pysave
--- /dev/null
+/home/adam/Projects/tslint.vim
\ No newline at end of file
--- /dev/null
+Subproject commit 7e25a901af7cd993498cc9ecfc833ca2ac21db7a
au BufNewFile,BufRead *.md,*.txt setlocal textwidth=80
au BufWritePost *.py call Flake8()
au BufWritePost *.js :JSHint
+au BufWritePost *.ts :TSLint
au BufNewFile,BufRead *.dat setlocal noexpandtab
au BufNewFile,BufRead *.jade setlocal noexpandtab
au BufNewFile,BufRead * call SetupEnvironment()
vmap <silent> <expr> p <sid>Repl()
+
+let localrc = expand("~/.vim.local")
+if filereadable(localrc)
+ so ~/.vim.local
+endif
--- /dev/null
+:set tabstop=2
+:set softtabstop=2
+:set shiftwidth=2
+:set noexpandtab