Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. unlet! skip_defaults_vim
  2. source $VIMRUNTIME/defaults.vim
  3.  
  4. " Convert tabs to spaces
  5. autocmd FileType c set tabstop=8 expandtab shiftwidth=4
  6. autocmd FileType sh set tabstop=8 expandtab shiftwidth=4
  7. autocmd FileType python set tabstop=8 expandtab shiftwidth=4 softtabstop=4
  8. autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab
  9.  
  10. " Toggling paste mode
  11. set pastetoggle=<F2>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement