summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2013-09-10 11:24:31 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2013-09-10 11:24:32 +0200
commit55dada5173b913daae8566ef7ec9b5ad71d33b0a (patch)
treec62e04b8b8a24c5859bffcdf7015d3ca3b051c18
parente8e16dc19a11b0c96080ae31a5a34d1e741644cf (diff)
downloaddotfiles-55dada5173b913daae8566ef7ec9b5ad71d33b0a.tar.gz
dotfiles-55dada5173b913daae8566ef7ec9b5ad71d33b0a.tar.bz2
dotfiles-55dada5173b913daae8566ef7ec9b5ad71d33b0a.zip
Node/NPM preparation
-rw-r--r--.npmrc2
-rw-r--r--.vim/bundles.vim2
-rw-r--r--.zshenv10
3 files changed, 13 insertions, 1 deletions
diff --git a/.npmrc b/.npmrc
new file mode 100644
index 0000000..54c2de4
--- /dev/null
+++ b/.npmrc
@@ -0,0 +1,2 @@
+prefix = ${HOME}/.node
+temp = /tmp
diff --git a/.vim/bundles.vim b/.vim/bundles.vim
index 9040a32..56de02a 100644
--- a/.vim/bundles.vim
+++ b/.vim/bundles.vim
@@ -64,4 +64,6 @@ Bundle 'unimpaired.vim'
" i3 Syntax highlighting
Bundle 'PotatoesMaster/i3-vim-syntax'
+" Coffee Script support
+Bundle 'kchmck/vim-coffee-script'
filetype plugin indent on " required!
diff --git a/.zshenv b/.zshenv
index f38c243..39bdc09 100644
--- a/.zshenv
+++ b/.zshenv
@@ -5,7 +5,15 @@ fpath=(~/.zsh/functions $fpath)
# load all things in there
autoload ${fpath[1]}/*(:t)
-[[ -d ~/bin ]] && path=(~/bin $path)
+path=(
+ # general binaries
+ ~/bin
+ # node stuff
+ ~/.node/bin
+ # isabelle
+ ~/isabelle/Isabelle/bin
+ # rest
+ $path)
# other variables
_kw="~amd64"