Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. set number
  2. set shiftwidth=2
  3. set softtabstop=2
  4. set shiftround
  5. set expandtab
  6. set t_Co=256
  7. set autoindent
  8. set wrap
  9. set showmatch
  10. " :make
  11. set makeprg=perl\ -c\ %\ $*
  12. set errorformat+=%m\ at\ %f\ line\ %l\.
  13. set errorformat+=%m\ at\ %f\ line\ %l
  14. set autowrite
  15. " color complex things
  16. let perl_extended_vars=1
  17. let perl_include_pod=1
  18. " quit instead of Ex mode
  19. map Q :q
  20. " toggle comment
  21. command -range=% T :<line1>,<line2>s/^/#/
  22. command -range=% TT :<line1>,<line2>s/^#//
  23. map t :s/^/#/g<CR>
  24. map tt :s/^#//g<CR>
  25. filetype indent on
  26. syntax on
  27. " colorscheme monochrome
  28. " github.com/fxn/vim-monochrome
  29. colorscheme peachpuff
  30. highlight Normal ctermbg=233
  31. highlight LineNr ctermfg=238
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement