Created
March 22, 2017 06:44
-
-
Save ZabdiAG/6daac702f13638a5b21a48357a8e6d2f to your computer and use it in GitHub Desktop.
Personal vimrc
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 | |
filetype off | |
set rtp+=~/.vim/bundle/vundle/ | |
set tabstop=2 | |
set softtabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
set number | |
call vundle#rc() | |
" This is the Vundle package, which can be found on GitHub. | |
" For GitHub repos, you specify plugins using the | |
" 'user/repository' format | |
Plugin 'gmarik/vundle' | |
Plugin 'scrooloose/nerdtree.git' | |
Plugin 'Buffergator' | |
Plugin 'tpope/vim-fugitive' | |
Plugin 'scrooloose/syntastic' | |
let g:syntastic_javascript_checkers = ['standard'] | |
Plugin 'kien/ctrlp.vim' | |
" Javascript vim plugin conf | |
Plugin 'pangloss/vim-javascript' | |
let g:javascript_plugin_jsdoc = 1 | |
Plugin 'altercation/vim-colors-solarized' | |
syntax enable | |
set background=dark | |
let g:solarized_termcolors=256 | |
colorscheme solarized | |
Plugin 'vim-airline/vim-airline' | |
Plugin 'vim-airline/vim-airline-themes' | |
Plugin 'airblade/vim-gitgutter' | |
set updatetime=250 | |
Plugin 'nathanaelkane/vim-indent-guides' | |
Plugin 'scrooloose/nerdcommenter' | |
Plugin 'tpope/vim-surround' | |
Plugin 'easymotion/vim-easymotion' | |
" Now we can turn our filetype functionality back on | |
filetype plugin indent on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment