.gvimrc 698 B

12345678910111213141516171819202122232425262728
  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. elseif has('unix')
  15. " set guifont=RictyforPowerline\ 12
  16. endif
  17. if has('multi_byte_ime') || has('xim')
  18. highlight Cursor guifg=NONE guibg=Green
  19. highlight CursorIM guifg=NONE guibg=Purple
  20. endif
  21. gui
  22. if has('win32') || has('win64') || has('win32unix')
  23. set transparency=220
  24. endif