]> Vexing Labs - dotfiles.git/commitdiff
Updates for new team/environment
authorAdam A.G. Shamblin <adam.shamblin@thinktank.net>
Wed, 8 Feb 2017 14:22:42 +0000 (07:22 -0700)
committerAdam A.G. Shamblin <adam.shamblin@thinktank.net>
Wed, 8 Feb 2017 14:22:42 +0000 (07:22 -0700)
.gitmodules
dotbash_profile
dotvim/bundle/tslint.vim [new symlink]
dotvim/bundle/typescript-vim [new submodule]
dotvimrc
thinktank-dotvim.local [new file with mode: 0644]

index 5bd8c56f28c86dea1f13f75ee19a0d4bb187d725..5fb0ad0c8ec7545b4ebaa6833e3497cb615e880c 100644 (file)
@@ -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
index 47cc5c4b9a9a0752d07c7ce43ef99b09cf0593a9..459f5de474551e74a0ae0e65f1186bfe8a51e6df 100644 (file)
@@ -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 (symlink)
index 0000000..c36628d
--- /dev/null
@@ -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 (submodule)
index 0000000..7e25a90
--- /dev/null
@@ -0,0 +1 @@
+Subproject commit 7e25a901af7cd993498cc9ecfc833ca2ac21db7a
index c4b1307c10da711b2787fd412394377fd6129cec..634ca4c117a8faec1fff3099d46a09100d13df25 100644 (file)
--- 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 <silent> <expr> p <sid>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 (file)
index 0000000..8298fd3
--- /dev/null
@@ -0,0 +1,4 @@
+:set tabstop=2
+:set softtabstop=2
+:set shiftwidth=2
+:set noexpandtab