Advertisement
Guest User

.vimrc

a guest
Apr 26th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.65 KB | None | 0 0
  1. set number
  2. set nowrap
  3. set showbreak=+++
  4. set textwidth=100
  5. set showmatch
  6. set errorbells
  7.  
  8. set hlsearch
  9. set smartcase
  10. set ignorecase
  11. set incsearch
  12.  
  13. set autoindent
  14. set cindent
  15. set shiftwidth=4
  16. set smartindent
  17. set smarttab
  18. set softtabstop=4
  19.  
  20. set ruler
  21. set relativenumber
  22.  
  23. set undolevels=1000
  24. set backspace=indent,eol,start
  25.  
  26. syntax on
  27. "colorscheme southernlights  "Pretty good for OS X Terminal
  28. colorscheme elflord
  29.  
  30. " Configure the undo history directory
  31. set undofile
  32. set undodir=~/.vim/undo
  33.  
  34. " Move to last position
  35. autocmd BufReadPost * exe "normal! g`\""
  36.  
  37. " Center current line
  38. autocmd BufReadPost * exe "normal! zz"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement