From 4d61479f85e110c9c9f9b46120aae8b7bc5759c9 Mon Sep 17 00:00:00 2001 From: Michael Skrynski Date: Thu, 11 Sep 2014 13:23:59 +0200 Subject: [PATCH] elixir plugin added, README updated --- README.md | 2 +- make_my_dotfiles.sh | 2 +- vimrc | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8d91973..0ee913d 100644 --- a/README.md +++ b/README.md @@ -5,5 +5,5 @@ zlorfi's dotfiles * create symlinks via the `make_my_dotfiles.sh` script * install patched `Source Code Pro` font for the `vim-airline` plugin * change the font of your default terminal app to patched `Source Code Pro` -* clone Vundle repo `git clone git://github.com/gmarik/vundle.git ~/dotfiles/vim/bundle/vundle` +* clone Vundle repo `git clone git://github.com/gmarik/vundle.git ~/dotfiles/vim/bundle/Vundle.vim` * launch `vim` with `vim +BundleInstall +qall` diff --git a/make_my_dotfiles.sh b/make_my_dotfiles.sh index 770ce9b..1815e7c 100755 --- a/make_my_dotfiles.sh +++ b/make_my_dotfiles.sh @@ -3,7 +3,7 @@ # some variables _zsh_file="/usr/local/bin/zsh" _homebrew=`which brew` -_to_install="csshx erlang imagemagick mongodb postgresql rbenv redis ruby-build tmux unrar yasm youtube-dl zsh peco" +_to_install="csshx erlang imagemagick mongodb postgresql rbenv redis ruby-build tmux unrar yasm youtube-dl zsh peco elixir" # Generate symlinks for files for i in gemrc gvimrc irbrc jumprc NERDTreeBookmarks screenrc vimrc zshrc tmux.conf diff --git a/vimrc b/vimrc index 983e951..ebe60f9 100644 --- a/vimrc +++ b/vimrc @@ -9,7 +9,7 @@ set history=1000 filetype off " set the runtime path to include Vundle and initialize -set rtp+=~/dotfiles/vim/bundle/vundle +set rtp+=~/dotfiles/vim/bundle/Vundle.vim call vundle#begin() " let Vundle manage Vundle, required @@ -17,6 +17,7 @@ Plugin 'gmarik/Vundle.vim' " my plugins Plugin 'bling/vim-airline' +Plugin 'elixir-lang/vim-elixir' Plugin 'ervandew/supertab' Plugin 'ingydotnet/yaml-vim' Plugin 'kchmck/vim-coffee-script'