Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.89 KB | None | 0 0
  1. set nu
  2. set sw=4 ts=4 et
  3. set cindent
  4.  
  5. inoremap jk <ESC>
  6.  
  7. nnoremap <F1> :tabnext<CR>
  8. nnoremap <F2> :bp!<CR>
  9. nnoremap <F3> :bn!<CR>
  10. nnoremap <F4> :tabprevious<CR>
  11.  
  12. nnoremap <C-J> <C-W>j
  13. nnoremap <C-k> <C-W>k
  14. nnoremap <C-h> <C-W>h
  15. nnoremap <C-l> <C-W>l
  16.  
  17. nnoremap j gj
  18. nnoremap k gk
  19.  
  20. let base16colorspace=256  " Access colors present in 256 colorspace
  21.  
  22. " Specify a directory for plugins
  23. call plug#begin('~/.vim/plugged')
  24.  
  25. Plug 'tpope/vim-commentary'
  26. Plug 'tpope/vim-fugitive'
  27. Plug 'tpope/vim-repeat'
  28. Plug 'tpope/vim-rhubarb'
  29. Plug 'tpope/vim-sensible'
  30. Plug 'tpope/vim-surround'
  31.  
  32. Plug 'cocopon/iceberg.vim'
  33.  
  34. Plug 'vim-airline/vim-airline'
  35. let g:airline#extensions#tabline#enabled = 1
  36.  
  37. Plug 'sheerun/vim-polyglot'
  38. Plug 'dense-analysis/ale'
  39.  
  40. " Initialize plugin system
  41. call plug#end()
  42.  
  43. try
  44.     colorscheme iceberg
  45. catch /^Vim\%((\a\+)\)\=:E185/
  46.     :silent! PlugInstall
  47. endtry
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement