Advertisement
thanksduck

Untitled

Nov 26th, 2021
1,339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.85 KB | None | 0 0
  1. syntax on
  2. set nu
  3. set mouse=a
  4. set incsearch
  5. set showmatch
  6. set history=1000
  7. set backspace=indent,eol,start
  8. filetype indent on
  9. set shiftwidth=4
  10. set cindent
  11. let &t_SI = "\<Esc>]50;CursorShape=1\x7"
  12. let &t_SR = "\<Esc>]50;CursorShape=2\x7"
  13. let &t_EI = "\<Esc>]50;CursorShape=0\x7"
  14. set ttimeout
  15. set ttimeoutlen=1
  16. set listchars=tab:>-,trail:~,extends:>,precedes:<,space:.
  17. set ttyfast
  18. " STATUS LINE ------------------------------------------------------------ {{{
  19.  
  20. " Clear status line when vimrc is reloaded.
  21. set statusline=
  22.  
  23. " Status line left side.
  24. set statusline+=\ %F\ %M\ %Y\ %R
  25.  
  26. " Use a divider to separate the left side from the right side.
  27. set statusline+=%=
  28.  
  29. " Status line right side.
  30. set statusline+=\ ascii:\ %b\ hex:\ 0x%B\ row:\ %l\ col:\ %c\ percent:\ %p%%
  31.  
  32. " Show the status on the second to last line.
  33. set laststatus=2
  34.  
  35. " }}}
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement