.gvimrc 743 B

1234567891011121314151617181920212223242526272829
  1. colorscheme evening
  2. nnoremap <silent> <C-F2> :if &guioptions =~# 'T' <Bar>
  3. \set guioptions-=T <Bar>
  4. \set guioptions-=m <Bar>
  5. \else <Bar>
  6. \set guioptions+=T <Bar>
  7. \set guioptions+=m <Bar>
  8. \endif<CR>
  9. source $VIMRUNTIME/delmenu.vim
  10. set langmenu=ja_jp.utf-8
  11. source $VIMRUNTIME/menu.vim
  12. if has('win32') || has('win64')
  13. " set guifont=Aicty:h12
  14. set guifont=Ricty_for_PowerLine:h12:cSHIFTJIS
  15. elseif has('unix')
  16. " set guifont=RictyforPowerline\ 12
  17. endif
  18. if has('multi_byte_ime') || has('xim')
  19. highlight Cursor guifg=NONE guibg=Red
  20. highlight CursorIM guifg=NONE guibg=Green
  21. endif
  22. gui
  23. if has('win32') || has('win64') || has('win32unix')
  24. set transparency=220
  25. endif