Created
April 24, 2018 17:05
-
-
Save mzhang28/fb751b05bda932d0ab32331189857177 to your computer and use it in GitHub Desktop.
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
call plug#begin() | |
Plug 'vim-syntastic/syntastic' | |
Plug 'tomasiser/vim-code-dark' | |
Plug 'vim-airline/vim-airline' | |
Plug 'scrooloose/nerdtree' | |
Plug 'rhysd/vim-clang-format' | |
Plug 'kien/ctrlp.vim' | |
call plug#end() | |
set expandtab | |
set shiftwidth=2 | |
set softtabstop=2 | |
set autoindent | |
set smartindent | |
set cindent | |
set number | |
set cursorline | |
set wrap | |
colorscheme codedark | |
map <C-n> :NERDTreeToggle<CR> | |
let g:clang_format#detect_style_file = 1 | |
let g:clang_format#auto_format = 1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment