12345678910111213141516171819202122232425262728 |
- colorscheme evening
- nnoremap <silent> <C-F2> :if &guioptions =~# 'T' <Bar>
- \set guioptions-=T <Bar>
- \set guioptions-=m <Bar>
- \else <Bar>
- \set guioptions+=T <Bar>
- \set guioptions+=m <Bar>
- \endif<CR>
-
- source $VIMRUNTIME/delmenu.vim
- set langmenu=ja_jp.utf-8
- source $VIMRUNTIME/menu.vim
- if has('win32') || has('win64')
- " set guifont=Aicty:h12
- elseif has('unix')
- " set guifont=RictyforPowerline\ 12
- endif
- if has('multi_byte_ime') || has('xim')
- highlight Cursor guifg=NONE guibg=Green
- highlight CursorIM guifg=NONE guibg=Purple
- endif
- gui
- if has('win32') || has('win64') || has('win32unix')
- set transparency=220
- endif
|