Guest User

Untitled

a guest
Dec 15th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. vim
  2.  
  3. $ cat .vimrc
  4. --------------------
  5. filetype plugin indent on
  6. " show existing tab with 4 spaces width
  7. set tabstop=2
  8. " when indenting with '>', use 4 spaces width
  9. set shiftwidth=2
  10. " On pressing tab, insert 4 spaces
  11. set expandtab
  12. " On line number
  13. set number
  14. " On show special char (tab and line end)
  15. set list
  16. -----------------------------
  17.  
  18.  
  19. # if you hide line number
  20. set nonumber
  21. # if you hide special chars (etc line end $ mark)
  22. hide special char : set nolist
Add Comment
Please, Sign In to add comment