""" """ Last Change: 2014/11/16 01:39:14. """ """ --------------- """ neobundle.vim """ --------------- " {{{ " vim起動時のみruntimepathにneobundle.vimを追加 if has('vim_starting') set nocompatible set runtimepath+=~/.vim/bundle/neobundle.vim endif " neobundle.vimの初期化 call neobundle#begin(expand('~/.vim/bundle')) " NeoBundleを更新するための設定 NeoBundleFetch 'Shougo/neobundle.vim' call neobundle#end() " 読み込むプラグインを記載 NeoBundle 'LeafCage/foldCC.vim' NeoBundle 'Shougo/neocomplcache' NeoBundle 'Shougo/neosnippet-snippets' NeoBundle 'Shougo/neosnippet.vim' NeoBundle 'Shougo/unite.vim' NeoBundle 'Shougo/vimproc.vim' NeoBundle 'basyura/TweetVim' NeoBundle 'basyura/bitly.vim' NeoBundle 'basyura/twibill.vim' NeoBundle 'cohama/lexima.vim' NeoBundle 'haya14busa/incsearch.vim' NeoBundle 'itchyny/lightline.vim' NeoBundle 'kannokanno/previm' NeoBundle 'osyo-manga/shabadou.vim' NeoBundle 'osyo-manga/vim-watchdogs' NeoBundle 'thinca/vim-quickrun' NeoBundle 'tyru/open-browser.vim' NeoBundle 'vim-scripts/autodate.vim' NeoBundle 'yegappan/mru' NeoBundle 'yomi322/unite-tweetvim' NeoBundle 'yuratomo/w3m.vim' " インストールのチェック NeoBundleCheck " }}} "" ------------------- "" neocomplcache.vim "" ------------------- " {{{ " NeoComplCacheを有効にする let g:neocomplcache_enable_at_startup = 1 let g:neocomplcache_enable_smart_case = 1 let g:neocomplcache_lock_iminsert = 1 " }}} "" -------------- "" autodate.vim "" -------------- " {{{ " 書式設定 let autodate_format = "%Y/%m/%d %H:%M:%S" " }}} "" --------- "" mru.vim "" --------- " {{{ " GUIメニューを無効にする let MRU_Add_Menu = 0 let MRU_File = '/home/kz/.vim_mru_files' " }}} "" ------------ "" previm.vim "" ------------ " {{{ let g:previm_open_cmd = '' let g:previm_enable_realtime = 1 " }}} "" ------------ "" FoldCC.vim "" ------------ " {{{ set foldtext=FoldCCtext() set foldcolumn=1 set fillchars=vert:\| let g:foldCCtext_head = '">>>"' let g:foldCCtext_tail = '"<<<". (v:foldend-v:foldstart+1)' let g:foldCCtext_enable_autofdc_adjuster = 1 " }}} "" ---------------- "" NeoSnippet.vim "" ---------------- " {{{ " 自分用 snippet ファイルの場所 let s:my_snippet = '~/.vim/snippets/' let g:neosnippet#snippets_directory = s:my_snippet " }}} "" --------------- "" incsearch.vim "" --------------- " {{{ map / (incsearch-forward) map ? (incsearch-backward) map g/ (incsearch-stay) " }}} " vim: set foldmethod=marker: