Skip to content

Instantly share code, notes, and snippets.

@iptq
Created April 24, 2018 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iptq/fb751b05bda932d0ab32331189857177 to your computer and use it in GitHub Desktop.
Save iptq/fb751b05bda932d0ab32331189857177 to your computer and use it in GitHub Desktop.
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