Guest User

Untitled

a guest
Jan 17th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. call plug#begin('~/.local/share/nvim/site/plugged')
  2. Plug 'tpope/vim-fugitive'
  3. Plug 'tpope/vim-surround'
  4. Plug 'scrooloose/nerdtree'
  5. Plug 'vim-syntastic/syntastic'
  6. Plug 'vim-airline/vim-airline'
  7. Plug 'vim-airline/vim-airline-themes'
  8. Plug 'flazz/vim-colorschemes'
  9. Plug 'easymotion/vim-easymotion'
  10. Plug 'Valloric/YouCompleteMe'
  11. Plug 'ctrlpvim/ctrlp.vim'
  12. Plug 'leshill/vim-json'
  13. call plug#end()
  14.  
  15. set wildignore+=*/tmp/*,*.so,*.swp,*.zip
  16.  
  17. set statusline+=%#warningmsg#
  18. set statusline+=%{SyntasticStatuslineFlag()}
  19. set statusline+=%*
  20.  
  21. let g:syntastic_always_populate_loc_list = 1
  22. let g:syntastic_auto_loc_list = 1
  23. let g:syntastic_check_on_open = 1
  24. let g:syntastic_check_on_wq = 0
  25.  
  26. let g:airline_theme='bubblegum'
  27. colorscheme hybrid_material
  28.  
  29. let mapleader="\<SPACE>"
  30.  
  31. set number
  32. set expandtab
  33. set shiftwidth=2
  34. set softtabstop=2
  35. set tabstop=2
  36.  
  37. set ttimeoutlen=5
  38.  
  39. if has("autocmd")
  40. " remove trailing white spaces
  41. autocmd BufWritePre * :%s/\s\+$//e
  42. endif
Add Comment
Please, Sign In to add comment