fork download
  1. set nocompatible
  2. filetype on
  3. colorscheme slate
  4. syntax on
  5.  
  6. if has("gui_running")
  7. if has("gui_gtk2")
  8. set guifont=Inconsolata\ 12
  9. elseif has("gui_win32")
  10. set guifont=Consolas:h11:cANSI
  11. endif
  12. endif
  13.  
  14. set number
  15. set smartindent
  16. set shiftwidth=4
  17. set tabstop=4
  18. set expandtab
  19.  
  20. set ignorecase
  21. set smartcase
  22. set hlsearch
  23.  
  24. inoremap <Up> <nop>
  25. inoremap <Down> <nop>
  26. inoremap <Left> <nop>
  27. inoremap <Right> <nop>
  28. inoremap jj <Esc>
  29.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty