Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. " For details on any item below:
  2. " :help <item>
  3. " TO view all the available options:
  4. " :options
  5.  
  6. set listchars=eol:¬,tab:>␣,trail:~,extends:>,precedes:<,space:·
  7. set nu
  8. set list
  9. set expandtab
  10. set tabstop=4
  11. set shiftwidth=4
  12. set title
  13. set modeline
  14. set autoindent
  15. set showmatch
  16. set ruler
  17. set wildmenu
  18. set is
  19. set showcmd
  20. set scrolloff=5
  21. set lbr
  22. set hidden
  23.  
  24. set ai
  25. set si
  26. set bg=light
  27. syntax enable
  28. let python_hightlight_all = 1
  29.  
  30. nnoremap <Left> <nop>
  31. vnoremap <Left> <nop>
  32. inoremap <Left> <nop>
  33. nnoremap <Right> <nop>
  34. vnoremap <Right> <nop>
  35. inoremap <Right> <nop>
  36. nnoremap <Up> <nop>
  37. vnoremap <Up> <nop>
  38. inoremap <Up> <nop>
  39. nnoremap <Down> <nop>
  40. vnoremap <Down> <nop>
  41. inoremap <Down> <nop>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement