Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- " CORE
- ":set guioptions-=m "remove menu bar
- ":set guioptions-=T "remove toolbar
- set background=dark
- syntax on
- set hidden
- set noerrorbells
- set tabstop=4 softtabstop=4
- set shiftwidth=4
- set expandtab
- set smartindent
- set nu
- set nowrap
- set smartcase
- set noswapfile
- set nobackup
- set undodir=vimfiles/undodir
- set undofile
- set incsearch
- "
- " Give more space for displaying messages.
- set cmdheight=2
- " Having longer updatetime (default is 4000 ms = 4 s) leads to noticeable
- " delays and poor user experience.
- set updatetime=50
- " Don't pass messages to |ins-completion-menu|.
- set shortmess+=c
- set colorcolumn=80
- highlight ColorColumn ctermbg=0 guibg=lightgrey
- set guifont=Source_Code_Pro:h11:cANSI:qDRAFT
- """"""""""""""""""""""""""""""""""""""""""""""""""""""
- call plug#begin('vimfiles/plugged')
- Plug 'morhetz/gruvbox'
- call plug#end()
- colorscheme gruvbox
Add Comment
Please, Sign In to add comment