.vimrc 23 KB

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