Guest User

Untitled

a guest
Nov 21st, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. filetype plugin indent on
  2. " show existing tab with 4 spaces width
  3. set tabstop=4
  4. " when indenting with '>', use 4 spaces width
  5. set shiftwidth=4
  6. " On pressing tab, insert 4 spaces
  7. set expandtab
  8. " Enable line numbers
  9. set number
  10. " Javascript tabs
  11. autocmd Filetype javascript setlocal ts=2 sw=2 sts=2 expandtab
  12.  
  13. " Javascript tabs
  14. autocmd Filetype json setlocal ts=2 sw=2 sts=2 expandtab
  15. "
  16. " HTML tabs
  17. autocmd Filetype html setlocal ts=2 sw=2 sts=2 expandtab
  18. " go tabs
  19. autocmd Filetype go setlocal ts=4 sw=4 sts=4 noexpandtab
  20.  
  21. set rtp+=$GOPATH/src/golang.org/x/lint/misc/vim
  22. " autocmd BufWritePost,FileWritePost *.go execute 'Lint' | cwindow
  23.  
  24. " Show tabs
  25. set list
  26. set listchars=tab:>-
  27.  
  28. set clipboard=unnamed
  29.  
  30. " Blast deletes intothe black hole
  31. nnoremap d "_d
  32. vnoremap d "_d
Add Comment
Please, Sign In to add comment