]> Vexing Labs - dotfiles.git/commitdiff
Add Makefile, minor filetype-specific tweaks.
authorAdam A.G. Shamblin <adam.shamblin@gmail.com>
Sun, 7 Sep 2014 23:02:00 +0000 (17:02 -0600)
committerAdam A.G. Shamblin <adam.shamblin@gmail.com>
Sun, 7 Sep 2014 23:02:00 +0000 (17:02 -0600)
Makefile [new file with mode: 0644]
dotbash_profile
dotgvimrc
dotvimrc

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..e78dda2
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+all: clean build
+
+clean:
+       rm -rf ~/.bash_profile
+       rm -rf ~/.vimrc
+       rm -rf ~/.gvimrc
+
+build:
+       ln -s $(CURDIR)/dotbash_profile ~/.bash_profile
+       ln -s $(CURDIR)/dotvimrc ~/.vimrc
+       ln -s $(CURDIR)/dotgvimrc ~/.gvimrc
index aa3ee4c67254c032fad3fbc3c5c0ce2b9e232d38..9822c1bed3dae81804d6fe4a50ae192d3109ebe3 100644 (file)
@@ -5,7 +5,8 @@ export PYTHON_ENV_PATH=$HOME/env
 export GRADLE_HOME=$HOME/bin/gradle
 export ANDROID_PATH=/Applications/Android\ Studio.app/sdk/platform-tools:/Applications/Android\ Studio.app/sdk/tools
 export POSTGRES_PATH=/Applications/Postgres.app/Contents/Versions/9.3/bin
-export PATH=~/bin:/usr/local/bin:$PATH:$GRADLE_HOME/bin:$ANDROID_PATH:$POSTGRES_PATH
+export SCALA_HOME=~/bin/scala
+export PATH=~/bin:/usr/local/bin:$PATH:$GRADLE_HOME/bin:$ANDROID_PATH:$POSTGRES_PATH:$SCALA_HOME/bin
 
 ##################################################
 #
index dd420829872b45290b870e7f35861ebeed6ed94c..00fd4029f2aae17204dbbd4f802da2f845c79bd6 100644 (file)
--- a/dotgvimrc
+++ b/dotgvimrc
@@ -2,7 +2,7 @@ set nocompatible
 "source $VIMRUNTIME/vimrc_example.vim
 
 colorscheme solarized 
-set background=light
+set background=dark
 set autoindent
 set cindent
 set number
index bb595f6a67fb1a43e4d64955f9ce42ceaec22894..a3c8525279d43022629620ccc04c040b3969483c 100644 (file)
--- a/dotvimrc
+++ b/dotvimrc
@@ -33,5 +33,6 @@ au BufWritePost *.py call Flake8()
 au BufWritePost *.js :JSHint
 
 au BufNewFile,BufRead *.dat setlocal noexpandtab
+au BufNewFile,BufRead *.jade setlocal noexpandtab
 
 call pathogen#infect()