Advertisement
Guest User

/etc/vim/vimrc

a guest
Jul 26th, 2013
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.64 KB | None | 0 0
  1. colorscheme slate
  2. syntax on
  3. set hlsearch
  4. set nowrap
  5.  
  6. " Automatically jump to search while typing
  7. set incsearch
  8.  
  9. " Use tab to display commands starting with what you typed and to select one
  10. set wildmenu
  11.  
  12. " Turn on invisible characters
  13. " set list
  14.  
  15. " Display filename in title bar
  16. set title
  17.  
  18. " Turn on line numbers
  19. set number
  20.  
  21. " Automatically indent based on previous line
  22. set autoindent
  23.  
  24. " Set tab size
  25. set ts=4
  26.  
  27. " Scroll offset: Number of lines offset before scrolling starts
  28. set scrolloff=5
  29.  
  30. " Map functions to commands
  31. map 1 :tabnew<CR>
  32.  
  33. " Set Improved Tab Pasting Mode
  34. set paste
  35.  
  36. " Highlight Cursor Line
  37. set cursorline
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement