.vimrc 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773
  1. " coding:utf-8
  2. scriptencoding utf-8
  3. " ζ*'ヮ')ζ ζ(*'ヮ'リ+
  4. "
  5. set ignorecase
  6. set smartcase
  7. set tabstop=2
  8. set expandtab
  9. set autoindent
  10. set backspace=2
  11. set wrapscan
  12. set showmatch
  13. set wildmenu
  14. set formatoptions+=mM
  15. set softtabstop=2
  16. set shiftwidth=2
  17. set fileencodings=utf-8,sjis,cp932,euc-jp,default,latin
  18. set number
  19. set ruler
  20. set nolist
  21. set wrap
  22. set laststatus=2
  23. set cmdheight=2
  24. set showcmd
  25. set title
  26. set hlsearch
  27. set list
  28. set listchars=tab:>-
  29. colorscheme elflord
  30. syntax on
  31. set enc=utf8
  32. set updatetime=200
  33. " ファイル名に大文字小文字の区別がないシステム用の設定:
  34. " (例: DOS/Windows/MacOS)
  35. "
  36. if filereadable($VIM . '/vimrc') && filereadable($VIM . '/ViMrC')
  37. " tagsファイルの重複防止
  38. set tags=./tags,tags
  39. endif
  40. " コンソールでのカラー表示のための設定(暫定的にUNIX専用)
  41. if has('unix') && !has('gui_running')
  42. let uname = system('uname')
  43. if uname =~? "linux"
  44. set term=builtin_linux
  45. elseif uname =~? "freebsd"
  46. set term=builtin_cons25
  47. elseif uname =~? "Darwin"
  48. set term=beos-ansi
  49. else
  50. set term=builtin_xterm
  51. endif
  52. unlet uname
  53. endif
  54. " コンソール版で環境変数$DISPLAYが設定されていると起動が遅くなる件へ対応
  55. if !has('gui_running') && has('xterm_clipboard')
  56. set clipboard=exclude:cons\\\|linux\\\|cygwin\\\|rxvt\\\|screen
  57. endif
  58. " タブページの切り替えをWindowsのように
  59. " CTRL+Tab SHIFT+Tabで行うように.
  60. if v:version >= 700
  61. nnoremap <C-Tab> gt
  62. nnoremap <C-S-Tab> gT
  63. endif
  64. if has('+regexpengine')
  65. set re=0
  66. endif
  67. let g:vim_indent_cont = 2
  68. filetype off
  69. if has('vim_starting')
  70. set runtimepath+=~/.vim/neobundle.vim.git
  71. endif
  72. call neobundle#begin(expand('~/.bundle'))
  73. let g:neobundle_default_git_protocol='https'
  74. if has('python')
  75. NeoBundle 'OmniSharp/omnisharp-vim'
  76. call neobundle#config('omnisharp-vim', {
  77. \ 'lazy' : 1,
  78. \ 'autoload' : {'filetypes': ['cs'] }
  79. \ })
  80. endif
  81. NeoBundleFetch 'Shougo/neobundle.vim'
  82. NeoBundle 'Shougo/echodoc'
  83. call neobundle#config('echodoc', {
  84. \ 'lazy' : 1,
  85. \ 'autoload' : {
  86. \ 'insert' : 1,
  87. \ }})
  88. if has('lua')
  89. NeoBundle 'Shougo/neocomplete.vim'
  90. else
  91. NeoBundle 'Shougo/neocomplcache'
  92. endif
  93. NeoBundle 'Shougo/neomru.vim'
  94. NeoBundle 'Shougo/neosnippet'
  95. call neobundle#config('neosnippet', {
  96. \ 'lazy' : 1,
  97. \ 'autoload' : {
  98. \ 'insert' : 1,
  99. \ 'filetypes' : 'snippet',
  100. \ 'unite_sources' : ['snippet', 'neosnippet/user', 'neosnippet/runtime'],
  101. \ }})
  102. NeoBundle 'Shougo/neosnippet-snippets'
  103. call neobundle#config('neosnippet-snippets', {
  104. \ 'depends' : 'Shougo/neosnippet'
  105. \ })
  106. NeoBundle 'Shougo/unite-ssh'
  107. call neobundle#config('unite-ssh', {
  108. \ 'lazy' : 1,
  109. \ 'depends' : 'Shougo/unite.vim',
  110. \ 'autoload' : { 'unite_sources' : 'ssh' }
  111. \ })
  112. NeoBundle 'Shougo/unite.vim'
  113. call neobundle#config('unite.vim',{
  114. \ 'lazy' : 1,
  115. \ 'autoload' : {
  116. \ 'commands' : [{ 'name' : 'Unite',
  117. \ 'complete' : 'customlist,unite#complete_source'},
  118. \ 'UniteWithCursorWord', 'UniteWithInput']
  119. \ }})
  120. NeoBundle 'Shougo/unite-outline'
  121. NeoBundle 'Shougo/vimfiler'
  122. call neobundle#config('vimfiler', {
  123. \ 'lazy' : 1,
  124. \ 'depends' : 'Shougo/unite.vim',
  125. \ 'autoload' : {
  126. \ 'commands' : [
  127. \ { 'name' : 'VimFiler',
  128. \ 'complete' : 'customlist,vimfiler#complete' },
  129. \ { 'name' : 'VimFilerExplorer',
  130. \ 'complete' : 'customlist,vimfiler#complete' },
  131. \ { 'name' : 'VimFilerBufferDir',
  132. \ 'complete' : 'customlist,vimfiler#complete' },
  133. \ { 'name' : 'Edit',
  134. \ 'complete' : 'customlist,vimfiler#complete' },
  135. \ { 'name' : 'Write',
  136. \ 'complete' : 'customlist,vimfiler#complete' },
  137. \ 'Read', 'Source'],
  138. \ 'mappings' : ['<Plug>(vimfiler_switch)'],
  139. \ 'explorer' : 1,
  140. \ }
  141. \ })
  142. if has('win32') || has('win64')
  143. NeoBundleFetch 'jnwhiteh/vim-golang'
  144. call neobundle#config('vim-golang', {
  145. \ 'type' : 'nosync',
  146. \ 'lazy' : 1,
  147. \ 'autoload' : { 'filetypes' : 'go'}
  148. \ })
  149. else
  150. NeoBundle 'Shougo/vimproc.vim'
  151. call neobundle#config('vimproc.vim', {
  152. \ 'build' : {
  153. \ 'windows' : 'make -f make_mingw64.mak',
  154. \ 'cygwin' : 'make -f make_cygwin.mak',
  155. \ 'mac' : 'make -f make_mac.mak',
  156. \ 'unix' : 'make -f make_unix.mak',
  157. \ },
  158. \ })
  159. NeoBundle 'jnwhiteh/vim-golang'
  160. call neobundle#config('vim-golang', {
  161. \ 'lazy' : 1,
  162. \ 'autoload' : { 'filetypes' : 'go'}
  163. \ })
  164. endif
  165. NeoBundle 'Shougo/vimshell'
  166. call neobundle#config('vimshell', {
  167. \ 'lazy' : 1,
  168. \ 'autoload' : {
  169. \ 'commands' : [{ 'name' : 'VimShell',
  170. \ 'complete' : 'customlist,vimshell#complete'},
  171. \ 'VimShellExecute', 'VimShellInteractive',
  172. \ 'VimShellTerminal', 'VimShellPop'],
  173. \ 'mappings' : ['<Plug>(vimshell_switch)']
  174. \ }})
  175. NeoBundle 'basyura/J6uil.vim'
  176. call neobundle#config('J6uil.vim', {
  177. \ 'lazy' : 1,
  178. \ 'autoload' : { 'commands' : 'J6uil',
  179. \ 'unice_source' : ['J6uil/rooms', 'J6uil/members']},
  180. \ 'depends' : 'mattn/webapi-vim',
  181. \ })
  182. NeoBundle 'cohama/agit.vim'
  183. NeoBundle 'dag/vim2hs'
  184. call neobundle#config ('vim2hs', {
  185. \ 'lazy' : 1,
  186. \ 'autoload' : { 'filetypes' : 'haskell' }
  187. \})
  188. NeoBundle 'eagletmt/ghcmod-vim'
  189. call neobundle#config('ghcmod-vim', {
  190. \ 'lazy' : 1,
  191. \ 'autoload' : { 'filetypes' : 'haskell' }
  192. \ })
  193. if has('python')
  194. NeoBundle 'editorconfig/editorconfig-vim'
  195. endif
  196. NeoBundle 'groenewege/vim-less'
  197. call neobundle#config('vim-less', {
  198. \ 'lazy' : 1,
  199. \ 'autoload' : { 'filetypes' : 'less' }
  200. \ })
  201. NeoBundle 'haya14busa/incsearch.vim'
  202. NeoBundle 'honza/vim-snippets'
  203. NeoBundle 'itchyny/calendar.vim'
  204. NeoBundle 'itchyny/lightline.vim'
  205. NeoBundle 'jceb/vim-orgmode'
  206. call neobundle#config('vim-orgmode', {
  207. \ 'lazy' : 1,
  208. \ 'autoload' : { 'filetypes' : 'org' }
  209. \ })
  210. if has('python')
  211. NeoBundle 'kakkyz81/evervim'
  212. endif
  213. NeoBundle 'kamichidu/unite-javaimport', ''
  214. call neobundle#config('unite-javaimport', {
  215. \ 'lazy' : 1,
  216. \ 'depends' : [
  217. \ 'kamichidu/vim-javalang', 'kamichidu/vim-javaclasspath',
  218. \ 'Shougo/unite.vim'],
  219. \ 'autoload' : { 'filetypes' : ['java', 'scala', 'clojure']}
  220. \})
  221. NeoBundle 'kamichidu/vim-milqi', 'dev'
  222. NeoBundle 'kamichidu/vim-ref-java'
  223. call neobundle#config('vim-ref-java', {
  224. \ 'depends' : [ 'mattn/wwwrenderer-vim' ],
  225. \})
  226. NeoBundle 'kamichidu/vim-vdbc'
  227. call neobundle#config('vim-vdbc', {
  228. \ 'depends' : ['Shougo/vimproc.vim'] ,
  229. \ 'build': {
  230. \ 'unix' : 'make -f Makefile',
  231. \ 'windows' : 'make -f Makefile.w64'
  232. \ }
  233. \})
  234. NeoBundle 'kana/vim-smartinput'
  235. NeoBundle 'kana/vim-textobj-function'
  236. NeoBundle 'kana/vim-textobj-user'
  237. NeoBundle 'mattn/benchvimrc-vim'
  238. call neobundle#config('benchvimrc-vim', {
  239. \ 'lazy' : 1,
  240. \ 'autoload' : { 'commands' : 'BenchVimrc' }
  241. \ })
  242. NeoBundle 'mattn/flappyvird-vim'
  243. call neobundle#config('flappyvird-vim', {
  244. \ 'lazy' : 1,
  245. \ 'autoload' : { 'commands' : 'FlappyVird' }
  246. \ })
  247. NeoBundle 'mattn/gist-vim'
  248. call neobundle#config('gist-vim', {
  249. \ 'lazy' : 1,
  250. \ 'autoload' : { 'commands' : 'Gist' }
  251. \ })
  252. NeoBundle 'mattn/libcallex-vim'
  253. NeoBundle 'mattn/sonictemplate-vim'
  254. call neobundle#config('sonictemplate-vim', {
  255. \ 'lazy' : 1,
  256. \ 'autoload' : { 'commands' : 'Template' }
  257. \ })
  258. NeoBundle 'mattn/unite-rhythmbox'
  259. call neobundle#config('unite-rhythmbox', {
  260. \ 'lazy' : 1,
  261. \ 'autoload' : { 'unite_sources' : 'rhythmbox' },
  262. \ 'depends' : 'Shougo/unite.vim'
  263. \ })
  264. NeoBundle 'mattn/webapi-vim'
  265. NeoBundle 'miyakogi/conoline.vim'
  266. NeoBundle 'osyo-manga/quickrun-hook-u-nya-'
  267. call neobundle#config('quickrun-hook-u-nya-', {
  268. \ 'depends' : 'thinca/vim-quickrun'
  269. \ })
  270. NeoBundle 'osyo-manga/shabadou.vim'
  271. NeoBundle 'osyo-manga/unite-filetype'
  272. call neobundle#config('unite-filetype', {
  273. \ 'lazy' : 1,
  274. \ 'autoload' : { 'unite_sources' : ['filetype', 'filetype/new']},
  275. \ 'depends' : ['Shougo/unite.vim']
  276. \ })
  277. NeoBundle 'osyo-manga/unite-highlight'
  278. call neobundle#config('unite-highlight', {
  279. \ 'lazy' : 1,
  280. \ 'autoload' : { 'unite_sources' : ['highlight']},
  281. \ 'depends' : ['Shougo/unite.vim']
  282. \ })
  283. NeoBundle 'osyo-manga/unite-quickfix'
  284. call neobundle#config('unite-quickfix', {
  285. \ 'lazy' : 1,
  286. \ 'autoload' : { 'unite_sources' : ['quickfix', 'location_list']},
  287. \ 'depends' : 'Shougo/unite.vim'
  288. \ })
  289. NeoBundle 'osyo-manga/vim-marching'
  290. call neobundle#config('vim-marching', {
  291. \ 'depends' : ['Shougo/vimproc.vim', 'osyo-manga/vim-reunions']
  292. \ })
  293. NeoBundle 'osyo-manga/vim-monster'
  294. call neobundle#config('vim-monster', {
  295. \ 'lazy' : 1,
  296. \ 'autoload' : { 'filetypes' : 'ruby' }
  297. \ })
  298. NeoBundle 'osyo-manga/vim-reunions'
  299. NeoBundle 'osyo-manga/vim-snowdrop'
  300. call neobundle#config('vim-snowdrop', {
  301. \ 'lazy' : 1,
  302. \ 'autoload' : { 'filetypes' : 'cpp' }
  303. \ })
  304. NeoBundle 'osyo-manga/vim-watchdogs'
  305. NeoBundle 'raa0121/vim-ulilith'
  306. NeoBundle 'rbtnn/vimconsole.vim'
  307. call neobundle#config('vimconsole.vim', {
  308. \ 'lazy' : 1,
  309. \ 'depends' : 'thinca/vim-prettyprint',
  310. \ 'autoload' : { 'commands' : 'VimConsoleOpen' }
  311. \ })
  312. NeoBundle 'ryutorion/vim-itunes'
  313. NeoBundle 'slim-template/vim-slim'
  314. NeoBundle 'stephpy/vim-php-cs-fixer'
  315. call neobundle#config('vim-php-cs-fixer', {
  316. \ 'lazy' : 1,
  317. \ 'autoload' : { 'filetypes' : 'php' }
  318. \ })
  319. NeoBundle 'supermomonga/thingspast.vim'
  320. "call neobundle#config('thingspast.vim', {
  321. " \ 'build' : { 'unix' : 'bundle install' }
  322. " \ })
  323. NeoBundle 'thinca/vim-ft-clojure'
  324. call neobundle#config('vim-ft-clojure', {
  325. \ 'lazy' : 1,
  326. \ 'autoload' : { 'filetypes' : 'clojure' }
  327. \ })
  328. NeoBundle 'thinca/vim-github'
  329. call neobundle#config('vim-github', {
  330. \ 'lazy' : 1,
  331. \ 'autoload' : { 'commands' : 'Github' }
  332. \ })
  333. NeoBundle 'thinca/vim-prettyprint'
  334. call neobundle#config('vim-prettyprint', {
  335. \ 'lazy' : 1,
  336. \ 'autoload' : { 'commands' : ['PP', 'PrettyPrint']}
  337. \ })
  338. NeoBundle 'thinca/vim-quickrun'
  339. call neobundle#config('vim-quickrun', {
  340. \ 'lazy' : 1,
  341. \ 'autoload' : {
  342. \ 'mappings' : [
  343. \ ['nxo', '<Plug>(quickrun)']],
  344. \ 'commands' : 'QuickRun',
  345. \ },
  346. \ })
  347. NeoBundle 'thinca/vim-ref'
  348. call neobundle#config('vim-ref', {
  349. \ 'lazy' : 1,
  350. \ 'autoload' : { 'commands' : ['Ref', 'RefHistory'],
  351. \ 'unite_sources' : ['ref/erlang', 'ref/man',
  352. \ 'ref/pydoc', 'ref/redis',
  353. \ 'ref/clojure',
  354. \ 'ref/refe', 'ref/webdict']}
  355. \ })
  356. NeoBundle 'thinca/vim-singleton'
  357. NeoBundle 'thinca/vim-splash'
  358. NeoBundle 'thinca/vim-textobj-function-javascript'
  359. call neobundle#config('vim-textobj-function-javascript', {
  360. \ 'depends' : ['kana/vim-textobj-function'],
  361. \ 'lazy' : 1,
  362. \ 'autoload' : { 'filetypes' : 'javascript' }
  363. \ })
  364. NeoBundle 'thinca/vim-threes'
  365. call neobundle#config('vim-threes', {
  366. \ 'lazy' : 1,
  367. \ 'autoload' : { 'commands' : 'ThreesStart' }
  368. \ })
  369. NeoBundle 'tpope/vim-cucumber'
  370. call neobundle#config('vim-cucumber', {
  371. \ 'lazy' : 1,
  372. \ 'autoload' : { 'filetypes' : 'cucumber' }
  373. \ })
  374. NeoBundle 'tsukkee/lingr-vim'
  375. call neobundle#config('lingr-vim', {
  376. \ 'lazy' : 1,
  377. \ 'autoload' : { 'commands' : 'LingrLaunch' }
  378. \ })
  379. NeoBundle 'tyru/kirikiri.vim'
  380. call neobundle#config('lingr-vim', {
  381. \ 'lazy' : 1,
  382. \ 'autoload' : { 'filetypes' : 'kscript' }
  383. \ })
  384. NeoBundle 'tyru/open-browser.vim'
  385. call neobundle#config('open-browser.vim',{
  386. \ 'lazy' : 1,
  387. \ 'autoload' : {
  388. \ 'mappings' : '<Plug>(open-browser-wwwsearch)',
  389. \ }
  390. \ })
  391. NeoBundle 'ujihisa/neco-ghc'
  392. call neobundle#config('neco-ghc', {
  393. \ 'lazy' : 1,
  394. \ 'autoload' : { 'filetypes' : 'haskell' }
  395. \ })
  396. if executable('look')
  397. NeoBundle 'ujihisa/neco-look'
  398. endif
  399. NeoBundle 'ujihisa/neoclojure.vim'
  400. call neobundle#config('neco-ghc', {
  401. \ 'lazy' : 1,
  402. \ 'autoload' : { 'filetypes' : 'clojure',
  403. \ 'unite_sources' : ['ref/neoclojure'] }
  404. \ })
  405. NeoBundle 'ujihisa/unite-colorscheme'
  406. call neobundle#config('unite-colorscheme', {
  407. \ 'lazy' : 1,
  408. \ 'autoload' : { 'unite_sources' : ['colorscheme'] }
  409. \ })
  410. NeoBundle 'ujihisa/vimshell-ssh'
  411. call neobundle#config('vimshell-ssh',{
  412. \ 'lazy' : 1,
  413. \ 'depends' : 'Shougo/vimshell',
  414. \ 'autoload' : { 'filetypes' : 'vimshell'}
  415. \ })
  416. NeoBundle 'vim-jp/vimdoc-ja'
  417. NeoBundle 'vim-jp/vital.vim'
  418. call neobundle#config('vital.vim', {
  419. \ 'lazy' : 1,
  420. \ 'autoload' : {
  421. \ 'commands' : ['Vitalize'],
  422. \ 'functions' : ['vital#of', 'vital']
  423. \ }
  424. \ })
  425. NeoBundle 'vim-scripts/AnsiEsc.vim'
  426. NeoBundle 'vim-scripts/sudo.vim'
  427. NeoBundle 'yoppi/fluentd.vim'
  428. call neobundle#config('fluentd.vim',{
  429. \ 'lazy' : 1,
  430. \ 'autoload' : { 'filetypes' : 'fluentd'}
  431. \ })
  432. if executable('w3m')
  433. NeoBundle 'yuratomo/w3m.vim'
  434. call neobundle#config('w3m.vim',{
  435. \ 'lazy' : 1,
  436. \ 'autoload' : { 'commands' : ['W3m', 'W3mTab']}
  437. \ })
  438. endif
  439. call neobundle#end()
  440. filetype plugin indent on
  441. if has('clientserver')
  442. call singleton#enable()
  443. end
  444. set ww+=h,l,>,<,[,]
  445. set mouse=a
  446. set ttymouse=xterm2
  447. set clipboard=unnamedplus
  448. " ,is: シェルを起動
  449. nnoremap <silent> ,is :VimShell<CR>
  450. " ,ipy: pythonを非同期で起動
  451. nnoremap <silent> ,ipy :VimShellInteractive python<CR>
  452. " ,irb: irbを非同期で起動
  453. nnoremap <silent> ,irb :VimShellInteractive irb<CR>
  454. " ,ss: 非同期で開いたインタプリタに現在の行を評価させる
  455. vmap <silent> ,ss :VimShellSendString<CR>
  456. " 選択中に,ss: 非同期で開いたインタプリタに選択行を評価させる
  457. nnoremap <silent> ,ss <S-v>:VimShellSendString<CR>
  458. " ,vs: vimshell
  459. nnoremap <silent> ,vs :tabnew +VimShell<CR>
  460. " ,vr: .vimrc
  461. nnoremap <silent> ,vr :tabnew ~/.vimrc<CR>:lcd<CR>
  462. nnoremap <silent> ,so :so ~/.vimrc<CR>
  463. nnoremap <silent> ,nu :tabnew +Unite\ neobundle/update<CR>
  464. nnoremap <silent> ,ll :tabnew +LingrLaunch<CR>
  465. nnoremap <Esc><Esc> :nohlsearch<CR><ESC>
  466. nnoremap <silent> ,ts :<C-u>tab stj <C-R>=expand('<cword>')<CR><CR>
  467. map / <Plug>(incsearch-forward)
  468. map ? <Plug>(incsearch-backward)
  469. map g/ <Plug>(incsearch-stay)
  470. if neobundle#is_installed('neocomplcache')
  471. let g:neocomplcache_enable_at_startup = 1
  472. let g:neocomplcache_enable_smart_case = 1
  473. let g:neocomplcache_enable_camel_case_completion = 1
  474. let g:neocomplcache_enable_underbar_completion = 1
  475. let g:neocomplcache_min_syntax_length = 3
  476. let g:neocomplcache_lock_buffer_name_pattern = '\*ku\*'
  477. let g:neocomplcache_keyword_patterns = get(g:, 'neocomplecache_keyword_patterns', {})
  478. let g:neocomplcache_keyword_patterns['default'] = '\h\w*'
  479. endif
  480. if neobundle#is_installed('neocomplete.vim')
  481. let g:neocomplete#enable_at_startup = 1
  482. let g:neocomplete#enable_smart_case = 1
  483. let g:neocomplete#enable_camel_case_completion = 1
  484. let g:neocomplete#enable_underbar_completion = 1
  485. let g:neocomplete#min_syntax_length = 3
  486. let g:neocomplete#lock_buffer_name_pattern = '\*ku\*'
  487. let g:neocomplete#keyword_patterns = get(g:, 'neocomplete#keyword_patterns', {})
  488. let g:neocomplete#keyword_patterns['default'] = '\h\w*'
  489. let g:neocomplete#force_omni_input_patterns = get(g:, 'neocomplete#force_omni_input_patterns', {})
  490. let g:neocomplete#sources#omni#input_patterns = get(g:, 'neocomplete#sources#omni#input_patterns', {})
  491. let g:neocomplete#text_mode_filetypes = {'tex': 1, 'plaintex': 1}
  492. let g:neocomplete#force_omni_input_patterns.cpp =
  493. \ '[^.[:digit:] *\t]\%(\.\|->\)\w*\|\h\w*::\w*'
  494. let g:neocomplete#force_omni_input_patterns.ruby = '[^. *\t]\.\|\h\w*::'
  495. let g:neocomplete#sources#omni#input_patterns.cs = '[^.]\.\%(\u\{2,}\)\?'
  496. endif
  497. let g:vimfiler_as_default_explorer = 1
  498. let g:vimfiler_safe_mode_by_default = 0
  499. "let g:neocomplcache#sources#rsense#home_directory = '/opt/rsense-0.3/'
  500. let g:neocomplcache_text_mode_filetypes = {
  501. \ 'tex': 1,
  502. \ 'plaintex': 1,
  503. \}
  504. let g:monster#completion#rcodetools#backend = "async_rct_complete"
  505. let g:neosnippet#snippets_directory = '~/.vim/snippet,~/.bundle/vim-snippets/snippets'
  506. "tabで補完候補の選択を行う
  507. imap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
  508. imap <expr><S-TAB> pumvisible() ? "\<C-u>" : "\<S-TAB>"
  509. imap <expr><CR> neosnippet#expandable_or_jumpable() ? "\<Plug>(neosnippet_expand_or_jump)" : "\<CR>"
  510. smap <expr><TAB> neosnippet#expandable_or_jumpable() ?
  511. \ "\<Plug>(neosnippet_expand_or_jump)"
  512. \: "\<TAB>"
  513. augroup vimrc
  514. autocmd!
  515. augroup END
  516. autocmd vimrc FileType css setlocal omnifunc=csscomplete#CompleteCSS
  517. autocmd vimrc FileType html,markdown setlocal omnifunc=htmlcomplete#CompleteTags
  518. autocmd vimrc FileType javascript setlocal omnifunc=javascriptcomplete#CompleteJS
  519. autocmd vimrc FileType python setlocal omnifunc=pythoncomplete#Complete
  520. autocmd vimrc FileType xml setlocal omnifunc=xmlcomplete#CompleteTags
  521. autocmd vimrc FileType cs setlocal omnifunc=OmniSharp#Complete
  522. autocmd vimrc FileType clojure setlocal omnifunc=neoclojure#complete#omni
  523. autocmd vimrc FileType quickrun AnsiEsc
  524. autocmd vimrc BufNewFile,BufRead *.{md,mdwn,mkd,mkdn,mark*} setlocal filetype=markdown
  525. autocmd vimrc BufNewFile,BufRead *.gradle setlocal filetype=groovy
  526. autocmd vimrc FileType php setlocal noexpandtab wrap tabstop=4 shiftwidth=4
  527. autocmd vimrc FileType java setlocal noexpandtab wrap tabstop=4 shiftwidth=4
  528. autocmd vimrc FileType ruby setlocal tags+=$HOME/ctags/ruby.tags
  529. autocmd vimrc FileType c setlocal tags+=$HOME/ctags/c.tags
  530. autocmd vimrc BufNewFile Gemfile Template Gemfile
  531. let g:netrw_nogx = 1
  532. nmap gx <Plug>(openbrowser-smart-search)
  533. vmap gx <Plug>(openbrowser-smart-search)
  534. let g:quickrun_config = {}
  535. let g:quickrun_config = {
  536. \ '_' : {
  537. \ 'hook/close_unite_quickfix/enable_hook_loaded' : 1,
  538. \ 'hook/unite_quickfix/enable_failure' : 1,
  539. \ 'hook/close_quickfix/enable_exit' : 1,
  540. \ 'hook/close_buffer/enable_failure' : 1,
  541. \ 'hook/close_buffer/enable_empty_data' : 1,
  542. \ 'outputter' : 'multi:buffer:quickfix',
  543. \ 'hook/u_nya_/enable' : 1,
  544. \ 'hook/sweep/enable' : 0,
  545. \ 'outputter/buffer/split' : ':botright 15sp',
  546. \ 'outputter/buffer/running_mark' : 'バン(∩`・ω・)バンバンバンバン゙ン',
  547. \ 'runner' : 'vimproc',
  548. \ 'runner/vimproc/updatetime' : 40,
  549. \ 'runner/vimproc/sleep' : 0,
  550. \ }
  551. \ }
  552. let g:quickrun_config['markdown'] = {
  553. \ 'outputter': 'browser'
  554. \}
  555. let g:quickrun_config.ruby = {
  556. \ 'command': 'ruby',
  557. \ 'exec': '/usr/bin/env ruby %s',
  558. \ 'tempfile': '{tempname()}.rb'
  559. \}
  560. let g:quickrun_config['clojure/neoclojure'] = {
  561. \ 'type' : 'clojure/neoclojure',
  562. \ 'runner' : 'neoclojure',
  563. \ 'command' : 'dummy',
  564. \ 'tempfile' : '%{tempname()}.clj'
  565. \}
  566. let g:quickrun_config.cpp = {
  567. \ 'cmdopt': '-std=c++1y -Wall'
  568. \ }
  569. call watchdogs#setup(g:quickrun_config)
  570. let g:lingr_vim_user = 'raa0121'
  571. let g:J6uil_display_offline = 0
  572. let g:J6uil_display_online = 0
  573. let g:J6uil_echo_presence = 1
  574. let g:J6uil_display_icon = 0
  575. let g:J6uil_display_interval = 0
  576. let g:J6uil_updatetime = 1000
  577. let g:calendar_howm_syntax = 0
  578. let mygrepprg = 'grep'
  579. if has('win32unix')
  580. let MyGrep_cygwin17 = 1
  581. endif
  582. let g:calendar_google_calendar = 1
  583. let g:calendar_google_task = 1
  584. let g:marching_clang_command = '/usr/bin/clang'
  585. let g:marching_clang_command_option="-std=c++1y"
  586. let g:marching_enable_neocomplete = 1
  587. let g:marching_include_paths = ['/usr/include/c++/4.8.2/']
  588. let g:snowdrop#libclang_path='/usr/lib'
  589. let g:conoline_auto_enable = 1
  590. call unite#filters#matcher_default#use(['matcher_fuzzy'])
  591. let g:unite_enable_start_insert = 1
  592. let g:unite_source_directory_mru_long_limit = 3000
  593. let g:unite_source_file_mru_filename_format = ''
  594. let g:unite_source_file_mru_long_limit = 3000
  595. let g:unite_source_history_yank_enable = 1
  596. let g:unite_split_rule = 'botright'
  597. let g:unite_winheight = 15
  598. call textobj#user#plugin('datetime', {
  599. \ 'date': {
  600. \ 'pattern': '\<\d\d\d\d-\d\d-\d\d\>',
  601. \ 'select': ['ad', 'id'],
  602. \ },
  603. \ 'time': {
  604. \ 'pattern': '\<\d\d:\d\d:\d\d\>',
  605. \ 'select': ['at', 'it'],
  606. \ },
  607. \ })
  608. let g:php_cs_fixer_level = "all"
  609. let g:php_cs_fixer_config = "default"
  610. let g:php_cs_fixer_php_path = "php"
  611. let g:php_cs_fixer_enable_default_mapping = 1
  612. let g:php_cs_fixer_dry_run = 0
  613. let g:php_cs_fixer_verbose = 0
  614. augroup plugin-lingr-vim
  615. autocmd!
  616. autocmd FileType lingr-messages nmap <silent> <buffer> t <Plug>(lingr-messages-show-say-buffer)
  617. autocmd FileType lingr-say let &syntax='clojure'
  618. augroup END
  619. function! s:SID_PREFIX()
  620. return matchstr(expand('<sfile>'), '<SNR>\d\+_')
  621. endfunction
  622. set titlelen=100
  623. set guioptions-=e
  624. autocmd vimrc BufEnter * let &titlestring = '%{' . s:SID_PREFIX() . 'titlestring()}'
  625. autocmd vimrc User plugin-lingr-unread let &titlestring = '%{' . s:SID_PREFIX() . 'titlestring()}'
  626. if !has('gui_running')
  627. set t_Co=256
  628. endif
  629. if exists('$TMUX') || exists('$WINDOW')
  630. set t_ts=k
  631. set t_fs=\
  632. endif
  633. function! s:titlestring()
  634. if &filetype =~ '^lingr'
  635. let &titlestring = 'lingr: ' . lingr#unread_count()
  636. else
  637. let &titlestring = bufname('')
  638. endif
  639. endfunction
  640. " tabline
  641. set showtabline=2 " always show tabline
  642. let g:lightline = {
  643. \ 'colorscheme': 'wombat',
  644. \ 'component': {
  645. \ 'readonly': '%{&readonly?"\u2b64":""}'
  646. \ },
  647. \ 'separator': { 'left': "\u2b80", 'right': "\u2b82" },
  648. \ 'subseparator': { 'left': "\u2b81", 'right': "\u2b83" }
  649. \ }
  650. let &tabline = '%!' . s:SID_PREFIX() . 'tabline()'
  651. function! s:tabline()
  652. " show each tab
  653. let s = ''
  654. for i in range(1, tabpagenr('$'))
  655. let list = tabpagebuflist(i)
  656. let nr = tabpagewinnr(i)
  657. let current_tabnr = tabpagenr()
  658. "let title = bufname('')
  659. if i == current_tabnr
  660. let title = fnamemodify(getcwd(), ':t') . '/'
  661. "let title = bufname('')
  662. else
  663. let title = fnamemodify(gettabvar(i, 'cwd'), ':t') . '/'
  664. endif
  665. let title = empty(title) ? '[No Name]' : title
  666. let s .= i == current_tabnr ? '%#TabLineSel#' : '%#TabLine#'
  667. let s .= '%' . i . 'T[' . i . '] ' . title
  668. let s .= ' '
  669. endfor
  670. " show lingr unread count
  671. let lingr_unread = ""
  672. if exists('*lingr#unread_count')
  673. let lingr_unread_count = lingr#unread_count()
  674. if lingr_unread_count > 0
  675. let lingr_unread = "%#ErrorMsg#(" . lingr_unread_count . ")"
  676. elseif lingr_unread_count == 0
  677. let lingr_unread = "()"
  678. endif
  679. endif
  680. " build tabline
  681. let s .= '%#TabLineFill#%T%=%<[' . getcwd() . ']' . lingr_unread
  682. return s
  683. endfunction
  684. augroup vimrc-scratch-buffer
  685. autocmd!
  686. " Make a scratch buffer when unnamed buffer.
  687. autocmd BufEnter * call s:scratch_buffer()
  688. autocmd FileType qfreplace autocmd! vimrc-scratch * <buffer>
  689. function! s:scratch_buffer()
  690. if exists('b:scratch_buffer') || bufname('%') !=# '' || &l:buftype !=# ''
  691. return
  692. endif
  693. let b:scratch_buffer = 1
  694. setlocal buftype=nofile nobuflisted noswapfile bufhidden=hide
  695. augroup vimrc-scratch
  696. autocmd! * <buffer>
  697. autocmd BufWriteCmd <buffer> call s:scratch_on_BufWriteCmd()
  698. augroup END
  699. endfunction
  700. function! s:scratch_on_BufWriteCmd()
  701. silent! setl buftype< buflisted< swapfile< bufhidden< nomodified
  702. autocmd! vimrc-scratch * <buffer>
  703. if bufname('%') ==# '' && exists('b:scratch_buffer')
  704. execute 'saveas' . (v:cmdbang ? '!' : '') ' <afile>'
  705. filetype detect
  706. endif
  707. unlet! b:scratch_buffer
  708. endfunction
  709. augroup END
  710. command! -nargs=? ExtractMatches let s:pat = empty(<q-args>) ? @/ : <q-args> | let s:result = filter(getline(1, '$'), 'v:val =~# s:pat') | new | put =s:result
  711. let g:github_user = 'raa0121'
  712. let g:github#user = 'raa0121'