.gvimrc 600 B

12345678910111213141516171819202122232425
  1. nnoremap <silent> <C-F2> :if &guioptions =~# 'T' <Bar>
  2. \set guioptions-=T <Bar>
  3. \set guioptions-=m <Bar>
  4. \else <Bar>
  5. \set guioptions+=T <Bar>
  6. \set guioptions+=m <Bar>
  7. \endif<CR>
  8. if has('win32') || has('win64')
  9. set guifont=Aicty:h12
  10. elseif has('unix')
  11. set guifont=Aicty\ 12
  12. endif
  13. colorscheme evening
  14. if has('multi_byte_ime') || has('xim')
  15. highlight Cursor guifg=NONE guibg=Green
  16. highlight CursorIM guifg=NONE guibg=Purple
  17. endif
  18. gui
  19. if has('win32') || has('win64') || has('win32unix')
  20. set transparency 220
  21. endif