Skip to content

Instantly share code, notes, and snippets.

View aiya000's full-sized avatar
🐶
Inu

aiya000 aiya000

🐶
Inu
View GitHub Profile
@aiya000
aiya000 / vimrc
Last active October 7, 2015 13:42 — forked from velengel/vimrc
" vimrcを読み込むと自動でnocompatibleされる
"set nocompatible
set t_Co=256
colorscheme pablo
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
" 関連項目は一度にsetしてみてはいかがかな? ( 提案レベル )
"set list
"set listchars=tab:>-,trail:.
@aiya000
aiya000 / conceal-javadoc
Last active August 29, 2015 14:06 — forked from mmisono/.vimrc
if has('conceal')
function! s:concealJavaDocTags()
syn clear javaDocTags
syn clear htmlTag
syn clear htmlEndTag
syn clear htmlSpecialChar
syn clear htmlLink
syn clear htmlBold
syn clear htmlBold
syn clear htmlBoldUnderline
" Inspired by ujihisa's vimrc
" And deris's code (http://deris.hatenablog.jp/entry/2013/05/10/003430)
function! s:GitLogViewer()
if !exists(':VimProcRead')
echohl ERROR
echo "You don't have vimproc.vim or Your vimproc.vim is invalid ."
echo "This plugin required vimproc.vim ."
echohl NONE
endif