Skip to content

Instantly share code, notes, and snippets.

@TakashiNakagawa
Created February 28, 2017 01:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TakashiNakagawa/b3e34f2d1df1cdace627df3af7e17282 to your computer and use it in GitHub Desktop.
Save TakashiNakagawa/b3e34f2d1df1cdace627df3af7e17282 to your computer and use it in GitHub Desktop.
" set showtabline=2
" ツールバーを削除
set guioptions-=T
"半角文字の設定
set visualbell t_vb=
" ------------------------------------------------------
" colorscheme
" ------------------------------------------------------
" syntax on
let g:hybrid_use_Xresources = 1
" if g:colors_name ==? 'hybrid'
hi Visual gui=none guifg=khaki guibg=olivedrab
" endif
" window size
if has("win32")
" au GUIEnter * simalt ~x
set guifont=Ricty_Diminished:h13
au GUIEnter * set lines=60
au GUIEnter * set columns=190
else
"set transparency=8
set guifont=Ricty:h13
au GUIEnter * set lines=60
au GUIEnter * set columns=190
endif
augroup hack234
autocmd!
if has('mac')
autocmd FocusGained * set transparency=0
"autocmd FocusLost * set transparency=50
endif
augroup END
" 日本語入力ON時のカーソルの色を設定
if has('multi_byte_ime') || has('xim')
" highlight CursorIM guibg=DarkCyan guifg=NONE
" highlight CursorIM guibg=darkmagenta guifg=NONE
endif
" highlight CursorColumn ctermbg=Blue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment