Advertisement
Guest User

Untitled

a guest
Jul 5th, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.83 KB | None | 0 0
  1. " jakub37's minimal .vimrc-test file
  2. " trying to solve syntax highlighting limitations
  3. " using this darcula.vim color scheme:
  4.  
  5. runtime! debian.vim
  6.  
  7. set nocompatible "No compatible with vi
  8. let mapleader = ","
  9. set scrolloff=3 " scrolloff to see below and above text
  10.  
  11. set autoread
  12.  
  13. let g:DV=$HOME.'/.vim'
  14. let g:DV=expand(g:DV)
  15.  
  16. "set runtimepath+="/home/jakub/.vim/colors"
  17.  
  18. "################################
  19. "### PLUGINS (VUNDLE MANAGER) ###
  20. "################################
  21.  
  22. autocmd!
  23. filetype off
  24. let &rtp.=','.g:DV.'/bundle/Vundle.vim'
  25.  
  26. call vundle#begin(g:DV.'/bundle')
  27.  
  28. Plugin 'gmarik/Vundle.vim'
  29.  
  30. source /home/jakub/.vim/colors/darcula.vim
  31. syntax on
  32.  
  33. Plugin 'sheerun/vim-polyglot' "Syntax highlighting
  34.  
  35. call vundle#end()
  36.  
  37. "switch semi-colon and colon
  38. nnoremap ; :
  39. vnoremap ; :
  40. nnoremap : ;
  41. vnoremap : ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement