Created
March 1, 2014 05:19
-
-
Save devinceble/9285626 to your computer and use it in GitHub Desktop.
My Vimrc File
This file contains hidden or 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
set nocompatible " be iMproved | |
set number | |
filetype off " required! | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
" let Vundle manage Vundle | |
" required! | |
Bundle 'gmarik/vundle' | |
" Main Developer | |
Bundle 'Blackrush/vim-gocode' | |
Bundle 'kchmck/vim-coffee-script' | |
Bundle 'groenewege/vim-less' | |
Bundle 'digitaltoad/vim-jade' | |
Bundle 'mvanasse/vim-jade-handlebars' | |
Bundle 'gkz/vim-ls' | |
Bundle 'bolasblack/csslint.vim' | |
Bundle 'hallettj/jslint.vim' | |
Bundle 'juvenn/mustache.vim' | |
Bundle 'mattn/emmet-vim' | |
Bundle 'dart-lang/dart-vim-plugin' | |
" Tools | |
Bundle 'kien/ctrlp.vim' | |
Bundle 'scrooloose/nerdtree' | |
" Theme | |
Bundle 'flazz/vim-colorschemes' | |
filetype plugin indent on " required! | |
set tabstop=4 | |
set shiftwidth=4 | |
set softtabstop=4 | |
set expandtab | |
set nobackup | |
set nowritebackup | |
set noswapfile | |
let g:ctrlp_working_path_mode = '' | |
let g:ctrlp_custom_ignore = '\v[\/]\.(git|hg|svn|public|bin|pkg)$' | |
let g:ctrlp_custom_ignore = '\v[\/](public|bin|pkg)$' | |
filetype off | |
filetype plugin indent off | |
set runtimepath+=$GOROOT/misc/vim | |
filetype plugin indent on | |
syntax on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment