This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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:. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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 |