vimrc 945 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. " Turn on syntax highlighting
  2. syntax on
  3. " Automatically wrap text that extends beyond the screen length
  4. set wrap
  5. " Tabs
  6. set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab
  7. " Show line numbers
  8. set number
  9. " Display different types of white spaces
  10. set list
  11. set listchars=tab:›\ ,trail:•,extends:#,nbsp:.
  12. " Set status line display
  13. set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [POS=%l,%v][%p%%]\ [BUFFER=%n]\ %{strftime('%c')}
  14. " Encoding
  15. set encoding=utf-8
  16. "Highlight matching search patterns
  17. set hlsearch
  18. " Enable incremental search
  19. set incsearch
  20. " Include matching uppercase words with lowercase search terms
  21. set ignorecase
  22. " Include only uppercase words with uppercases search term
  23. set smartcase
  24. " Highlight matching pairs of brackets. Use the '%' character to jump between them.
  25. set matchpairs+=<:>
  26. " Speed up scrolling
  27. set ttyfast
  28. " Fixes common backspace problems
  29. set backspace=indent,eol,start