Guest User

Untitled

a guest
Dec 9th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 1.07 KB | None | 0 0
  1. "bullshit
  2.  
  3. set nocompatible
  4.  
  5. filetype on
  6. filetype plugin on
  7. filetype indent on
  8.  
  9. set nohidden
  10. set nolazyredraw
  11. set showmode
  12. set wildmenu
  13.  
  14. set wrapscan
  15. "set shellslash
  16. set vb
  17. set laststatus=2
  18. set synmaxcol=2048
  19. set incsearch
  20. set guifont=Liberation\ Mono:h8
  21. set autoindent
  22. set smartindent
  23. "set noexpandtab
  24. set expandtab
  25. set tabstop=4
  26. set shiftwidth=4
  27. set showtabline=1
  28. set linespace=0
  29.  
  30. set guioptions+=Ffacg
  31. set ruler
  32. set showmatch
  33. set showmode
  34. set smartindent
  35. set smarttab
  36. set guioptions-=T
  37. set laststatus=2
  38.  
  39. set backspace=2
  40.  
  41. set history=200
  42.  
  43. au BufNewFile,BufRead SConstruct set filetype=python
  44. au BufNewFile,BufRead SConscript* set filetype=python
  45. au BufRead,BufNewFile *.go set filetype=go
  46.  
  47. set textwidth=80
  48. set colorcolumn=80
  49. au GUIEnter * set cursorline
  50. set wrap
  51. set hls
  52.  
  53. "let g:inkpot_black_background=1
  54. "colors neverness
  55.  
  56. set encoding=utf-8
  57. set fileencoding=utf-8
  58.  
  59. " maximize
  60. "au GUIEnter * simalt ~x
  61.  
  62. syntax on
  63.  
  64. "-------------------------------
  65. map <M-Space> <Esc>
  66. map! <M-Space> <Esc>
  67. map <F2> :echo strftime('%c')<CR>
Add Comment
Please, Sign In to add comment