.vimrc 834 B

12345678910111213141516171819202122232425262728
  1. # vimconfig.com
  2. set number # Show line numbers
  3. set no wrap # Wrap lines
  4. set showbreak=+++ # Wrap-broken line prefix
  5. set textwidth=100 # Line wrap (number of cols)
  6. set showmatch # Highlight matching brace
  7. set visualbell # Use visual bell (no beeping)
  8. set hlsearch # Highlight all search results
  9. set ignorecase # Always case-insensitive
  10. set incsearch # Searches for strings incrementally
  11. set autoindent # Auto-indent new lines
  12. set expandtab # Use spaces instead of tabs
  13. set shiftwidth=4 # Number of auto-indent spaces
  14. set smartindent # Enable smart-indent
  15. set smarttab # Enable smart-tabs
  16. set softtabstop=2 # Number of spaces per Tab
  17. ## Advanced
  18. set ruler # Show row and column ruler information
  19. set undolevels=1000 # Number of undo levels
  20. set backspace=indent,eol,start # Backspace behaviour
  21. set autoread
  22. colorscheme desert