elixir plugin added, README updated

This commit is contained in:
Michael Skrynski
2014-09-11 13:23:59 +02:00
parent 86685e70ed
commit 4d61479f85
3 changed files with 4 additions and 3 deletions

View File

@@ -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`

View File

@@ -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

3
vimrc
View File

@@ -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'