Skip to content

Instantly share code, notes, and snippets.

@ykomatsu
Last active August 29, 2015 14:27
Show Gist options
  • Save ykomatsu/9d26ff8458339248babb to your computer and use it in GitHub Desktop.
Save ykomatsu/9d26ff8458339248babb to your computer and use it in GitHub Desktop.
${HOME}/.vim/.vimrc
" 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