Guest User

Untitled

a guest
Jun 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. colorscheme inkpot
  2. set guifont=Inconsolata:h16.5
  3. set guioptions=-M
  4.  
  5. syntax on
  6. filetype plugin indent on
  7. set tabstop=2
  8. set smarttab
  9. set shiftwidth=2
  10. set autoindent
  11. set expandtab
  12. set number
  13. set spell
  14. au FileType php setl sw=4 sts=4 et
  15.  
  16. "For LaTex
  17. set grepprg=grep\ -nH\ $*
  18. let g:tex_flavor='latex'
  19.  
  20. " disable arrow keys
  21. map <up> <nop>
  22. map <down> <nop>
  23. map <left> <nop>
  24. map <right> <nop>
  25. imap <up> <nop>
  26. imap <down> <nop>
  27. imap <left> <nop>
  28. imap <right> <nop>
  29.  
  30. " No huge lines
  31. set textwidth=90
  32. set nowrap
  33.  
  34. " Status line
  35. set statusline="%{&fo}"
  36.  
  37. " Move obnoxious swp files to /tmp
  38. set directory=/tmp
  39.  
  40. " Keep seeing the code underneath!
  41. set scrolloff=10
Add Comment
Please, Sign In to add comment