Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. 1 set nocompatible
  2. 2
  3. 3 filetype off
  4. 4 filetype plugin indent on
  5. 5
  6. 6 set ttyfast
  7. 7
  8. 8 set laststatus=2
  9. 9 set encoding=utf-8
  10. 10 set autoread
  11. 11 set autoindent
  12. 12 set backspace=indent,eol,start
  13. 13 set incsearch
  14. 14 set hlsearch
  15. 15
  16. 16 " Basic vim settings
  17. 17 set hidden
  18. 18 set visualbell
  19. 19 set number
  20. 20 set nobackup
  21. 21 set noswapfile
  22. 22 set noshowmode
  23. 23
  24. 24 " Set the terminal's title
  25. 25 set title
  26. 26
  27. 27 " Global tab width.
  28. 28 set tabstop=2
  29. 29 set shiftwidth=2
  30. 30 set softtabstop=2
  31. 31 set expandtab
  32. 32
  33. 33 " Set to show invisibles (tabs & trailing spaces) & their highlight color
  34. 34 set list listchars=tab:»\ ,trail:·
  35. 35
  36. 36 " Configure spell checking
  37. 37 nmap <silent> <leader>p :set spell!<CR>
  38. .vimrc 21,1 Top
  39. "~/.vimrc" 103L, 2196C
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement