Advertisement
forioop

Untitled

Sep 7th, 2022
749
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.98 KB | None | 0 0
  1. " Don't try to be vi compatible
  2. set nocompatible
  3.  
  4.  
  5. " Turn on syntax highlighting
  6. syntax on
  7.  
  8. " For plugins to load correctly
  9. filetype plugin indent on
  10.  
  11. " Show line numbers
  12. set number
  13.  
  14. " Show file stats
  15. set ruler
  16.  
  17. " Blink cursor on error instead of beeping (grr)
  18. set visualbell
  19.  
  20. " Encoding
  21. set encoding=utf-8
  22.  
  23. " Whitespace
  24. set wrap
  25. set textwidth=79
  26. set formatoptions=tcqrn1
  27. set tabstop=4
  28. set softtabstop=4
  29. set expandtab
  30. set noshiftround
  31. set autoindent 
  32. set shiftwidth=4   
  33. set smartindent
  34. set smarttab   
  35. set softtabstop=4  
  36. " Cursor motion
  37. set scrolloff=3
  38. set backspace=indent,eol,start
  39.  
  40. " Rendering
  41. set ttyfast
  42.  
  43. " Status bar
  44. set laststatus=2
  45.  
  46. " Last line
  47. set showmode
  48. set showcmd
  49.  
  50. " Searching
  51. set hlsearch
  52. set incsearch
  53. set ignorecase
  54. set smartcase
  55. set showmatch
  56.  
  57. " Visualize tabs and newlines
  58. set listchars=tab:▸\ ,eol:¬
  59.  
  60. " Color scheme (terminal)
  61. set t_Co=256
  62. set background=dark
  63. let g:solarized_termcolors=256
  64. let g:solarized_termtrans=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement