Last active
August 29, 2015 14:27
-
-
Save ykomatsu/9d26ff8458339248babb to your computer and use it in GitHub Desktop.
${HOME}/.vim/.vimrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" ln -s .vim/.vimrc ${HOME}/.vimrc ${HOME} | |
filetype off | |
set runtimepath+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'Valloric/YouCompleteMe' | |
Plugin 'tomasr/molokai' | |
Plugin 'rust-lang/rust.vim' | |
Plugin 'cohama/lexima.vim' | |
Plugin 'guns/vim-clojure-static' | |
Plugin 'mattn/emmet-vim' | |
call vundle#end() | |
filetype plugin indent on | |
syntax on | |
colorscheme molokai | |
set expandtab | |
set shiftwidth=2 | |
set viminfo='100,<50,s10,h,n~/.vim/.viminfo | |
if has("autocmd") && exists("+omnifunc") | |
autocmd Filetype * | |
\ if &omnifunc == "" | | |
\ setlocal omnifunc=syntaxcomplete#Complete | | |
\ endif | |
endif | |
autocmd BufNewFile,BufRead *.boot set filetype=clojure |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment