From 2f1d05c4498192a67600b0eaaf569ce5672d64a0 Mon Sep 17 00:00:00 2001 From: "Adam A.G. Shamblin" Date: Wed, 8 Feb 2017 07:22:42 -0700 Subject: [PATCH] Updates for new team/environment --- .gitmodules | 3 +++ dotbash_profile | 3 ++- dotvim/bundle/tslint.vim | 1 + dotvim/bundle/typescript-vim | 1 + dotvimrc | 6 ++++++ thinktank-dotvim.local | 4 ++++ 6 files changed, 17 insertions(+), 1 deletion(-) create mode 120000 dotvim/bundle/tslint.vim create mode 160000 dotvim/bundle/typescript-vim create mode 100644 thinktank-dotvim.local diff --git a/.gitmodules b/.gitmodules index 5bd8c56..5fb0ad0 100644 --- a/.gitmodules +++ b/.gitmodules @@ -16,3 +16,6 @@ [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 diff --git a/dotbash_profile b/dotbash_profile index 47cc5c4..459f5de 100644 --- a/dotbash_profile +++ b/dotbash_profile @@ -1,5 +1,4 @@ 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 @@ -12,6 +11,7 @@ export TERM=xterm-256color color_prompt=yes export SCRUM_DIR=~/Documents/scrum/ +export CHROME_BIN=`which chromium-browser` ################################################## # @@ -134,6 +134,7 @@ if ![[ hash pbcopy 2>/dev/null ]]; then 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 diff --git a/dotvim/bundle/tslint.vim b/dotvim/bundle/tslint.vim new file mode 120000 index 0000000..c36628d --- /dev/null +++ b/dotvim/bundle/tslint.vim @@ -0,0 +1 @@ +/home/adam/Projects/tslint.vim \ No newline at end of file diff --git a/dotvim/bundle/typescript-vim b/dotvim/bundle/typescript-vim new file mode 160000 index 0000000..7e25a90 --- /dev/null +++ b/dotvim/bundle/typescript-vim @@ -0,0 +1 @@ +Subproject commit 7e25a901af7cd993498cc9ecfc833ca2ac21db7a diff --git a/dotvimrc b/dotvimrc index c4b1307..634ca4c 100644 --- a/dotvimrc +++ b/dotvimrc @@ -96,6 +96,7 @@ au BufNewFile,BufRead *.less set filetype=less 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 @@ -103,3 +104,8 @@ au BufNewFile,BufRead *.jade setlocal noexpandtab au BufNewFile,BufRead * call SetupEnvironment() vmap p Repl() + +let localrc = expand("~/.vim.local") +if filereadable(localrc) + so ~/.vim.local +endif diff --git a/thinktank-dotvim.local b/thinktank-dotvim.local new file mode 100644 index 0000000..8298fd3 --- /dev/null +++ b/thinktank-dotvim.local @@ -0,0 +1,4 @@ +:set tabstop=2 +:set softtabstop=2 +:set shiftwidth=2 +:set noexpandtab -- 2.39.5