Guest User

Untitled

a guest
Sep 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. set nocompatible
  2. set t_Co=256
  3.  
  4. call pathogen#infect()
  5.  
  6. syntax on
  7. colorscheme wombat256
  8. filetype plugin indent on
  9.  
  10. " general settings
  11. set nobackup
  12. set noswapfile
  13. set nowrap
  14. set ts=2
  15. set shiftwidth=2
  16. set softtabstop=2
  17. set expandtab
  18. set background=dark
  19. set guioptions=-T
  20. set guioptions=-m
  21. set guioptions=-b
  22. set guioptions=-s
  23. set guifont=Consolas\ 10
  24.  
  25. set colorcolumn=80
  26. set nu
  27.  
  28. set laststatus=2
  29. set list listchars=trail:.
  30.  
  31. set wildignore+=*/.git/*,*/.hg/*,*/.svn/*/,*/tmp/cache/*,*/target/*,*/.idea/*,*/.settings/*,*/test-output/*,*/.scala_dependencies/*,*.class,*/n
  32. autocmd BufNewFile,BufRead *.ejs set filetype=html
  33. autocmd BufNewFile,BufRead *.json set filetype=javascript
  34. autocmd BufNewFile,BufRead Vagrantfile set filetype=ruby
  35. autocmd BufNewFile,BufRead Jakefile set filetype=javascript
Add Comment
Please, Sign In to add comment