Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- call plug#begin('~/.vim/plugged')
- "Plug 'Townk/vim-autoclose'
- Plug 'Raimondi/delimitMate'
- Plug 'morhetz/gruvbox'
- call plug#end()
- " Visual stuff
- set background=dark
- colo gruvbox
- syntax on
- set number
- set cursorline
- set list
- set cc=80
- " Indent stuff
- set softtabstop=4
- set shiftwidth=4
- set expandtab
- set autoindent
- set smartindent
- " Up down controls
- inoremap <up> <up><c-o>zz
- inoremap <down> <down><c-o>zz
- nnoremap <up> kzz
- nnoremap <down> jzz
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement