Guest User

Untitled

a guest
Oct 17th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. set noswapfile
  2. set autoindent
  3. set smartindent
  4.  
  5. set tabstop=4
  6. set shiftwidth=4
  7. set expandtab
  8.  
  9.  
  10. set textwidth=80
  11.  
  12. set t_Co=256
  13. syntax on
  14. set number
  15. set showmatch
  16.  
  17. set comments=s1:/*,mb:\ *,elx:\ */
  18. set foldmethod=syntax
  19.  
  20.  
  21. set backspace=indent,eol,start
  22.  
  23. colorscheme elflord
  24.  
  25. if has("gui_running")
  26. if has("gui_win32")
  27. set guifont=Hack:h9:cANSI
  28. endif
  29.  
  30. " Disable gvim visual clutter
  31. set guioptions-=T "toolbar
  32. set guioptions-=m "menu bar
  33. set guioptions-=r "scrollbar
  34.  
  35. endif
  36.  
  37. " Cesar syntax highlighting... sort of
  38. au BufRead,BufNewFile *.ced set filetype=nasm
Add Comment
Please, Sign In to add comment