Guest User

Untitled

a guest
May 5th, 2020
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.88 KB | None | 0 0
  1. " CORE
  2. ":set guioptions-=m "remove menu bar
  3. ":set guioptions-=T "remove toolbar
  4.  
  5. set background=dark
  6. syntax on
  7.  
  8. set hidden
  9. set noerrorbells
  10. set tabstop=4 softtabstop=4
  11. set shiftwidth=4
  12. set expandtab
  13. set smartindent
  14. set nu
  15. set nowrap
  16. set smartcase
  17. set noswapfile
  18. set nobackup
  19. set undodir=vimfiles/undodir
  20. set undofile
  21. set incsearch
  22.  
  23. "
  24. " Give more space for displaying messages.
  25. set cmdheight=2
  26.  
  27. " Having longer updatetime (default is 4000 ms = 4 s) leads to noticeable
  28. " delays and poor user experience.
  29. set updatetime=50
  30.  
  31. " Don't pass messages to |ins-completion-menu|.
  32. set shortmess+=c
  33.  
  34. set colorcolumn=80
  35. highlight ColorColumn ctermbg=0 guibg=lightgrey
  36.  
  37. set guifont=Source_Code_Pro:h11:cANSI:qDRAFT
  38. """"""""""""""""""""""""""""""""""""""""""""""""""""""
  39.  
  40. call plug#begin('vimfiles/plugged')
  41. Plug 'morhetz/gruvbox'
  42. call plug#end()
  43.  
  44. colorscheme gruvbox
Add Comment
Please, Sign In to add comment