.vimrc 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785
  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. if has('python')
  195. NeoBundle 'editorconfig/editorconfig-vim'
  196. endif
  197. NeoBundle 'fuenor/qfixhowm'
  198. NeoBundle 'groenewege/vim-less'
  199. call neobundle#config('vim-less', {
  200. \ 'lazy' : 1,
  201. \ 'autoload' : { 'filetypes' : 'less' }
  202. \ })
  203. NeoBundle 'haya14busa/incsearch.vim'
  204. NeoBundle 'honza/vim-snippets'
  205. NeoBundle 'itchyny/calendar.vim'
  206. NeoBundle 'itchyny/lightline.vim'
  207. NeoBundle 'jceb/vim-orgmode'
  208. call neobundle#config('vim-orgmode', {
  209. \ 'lazy' : 1,
  210. \ 'autoload' : { 'filetypes' : 'org' }
  211. \ })
  212. if has('python')
  213. NeoBundle 'kakkyz81/evervim'
  214. endif
  215. NeoBundle 'kamichidu/unite-javaimport', ''
  216. call neobundle#config('unite-javaimport', {
  217. \ 'lazy' : 1,
  218. \ 'depends' : [
  219. \ 'kamichidu/vim-javalang', 'kamichidu/vim-javaclasspath',
  220. \ 'Shougo/unite.vim'],
  221. \ 'autoload' : { 'filetypes' : ['java', 'scala', 'clojure']}
  222. \})
  223. NeoBundle 'kamichidu/vim-milqi', 'dev'
  224. NeoBundle 'kamichidu/vim-ref-java'
  225. call neobundle#config('vim-ref-java', {
  226. \ 'depends' : [ 'mattn/wwwrenderer-vim' ],
  227. \})
  228. NeoBundle 'kamichidu/vim-vdbc'
  229. call neobundle#config('vim-vdbc', {
  230. \ 'depends' : ['Shougo/vimproc.vim'] ,
  231. \ 'build': {
  232. \ 'unix' : 'make -f Makefile',
  233. \ 'windows' : 'make -f Makefile.w64'
  234. \ }
  235. \})
  236. NeoBundle 'kana/vim-smartinput'
  237. NeoBundle 'kana/vim-textobj-function'
  238. NeoBundle 'kana/vim-textobj-user'
  239. NeoBundle 'mattn/benchvimrc-vim'
  240. call neobundle#config('benchvimrc-vim', {
  241. \ 'lazy' : 1,
  242. \ 'autoload' : { 'commands' : 'BenchVimrc' }
  243. \ })
  244. NeoBundle 'mattn/flappyvird-vim'
  245. call neobundle#config('flappyvird-vim', {
  246. \ 'lazy' : 1,
  247. \ 'autoload' : { 'commands' : 'FlappyVird' }
  248. \ })
  249. NeoBundle 'mattn/gist-vim'
  250. call neobundle#config('gist-vim', {
  251. \ 'lazy' : 1,
  252. \ 'autoload' : { 'commands' : 'Gist' }
  253. \ })
  254. NeoBundle 'mattn/libcallex-vim'
  255. NeoBundle 'mattn/sonictemplate-vim'
  256. call neobundle#config('sonictemplate-vim', {
  257. \ 'lazy' : 1,
  258. \ 'autoload' : { 'commands' : 'Template' }
  259. \ })
  260. NeoBundle 'mattn/unite-rhythmbox'
  261. call neobundle#config('unite-rhythmbox', {
  262. \ 'lazy' : 1,
  263. \ 'autoload' : { 'unite_sources' : 'rhythmbox' },
  264. \ 'depends' : 'Shougo/unite.vim'
  265. \ })
  266. NeoBundle 'mattn/webapi-vim'
  267. NeoBundle 'miyakogi/conoline.vim'
  268. NeoBundle 'osyo-manga/quickrun-hook-u-nya-'
  269. call neobundle#config('quickrun-hook-u-nya-', {
  270. \ 'depends' : 'thinca/vim-quickrun'
  271. \ })
  272. NeoBundle 'osyo-manga/shabadou.vim'
  273. NeoBundle 'osyo-manga/unite-filetype'
  274. call neobundle#config('unite-filetype', {
  275. \ 'lazy' : 1,
  276. \ 'autoload' : { 'unite_sources' : ['filetype', 'filetype/new']},
  277. \ 'depends' : ['Shougo/unite.vim']
  278. \ })
  279. NeoBundle 'osyo-manga/unite-highlight'
  280. call neobundle#config('unite-highlight', {
  281. \ 'lazy' : 1,
  282. \ 'autoload' : { 'unite_sources' : ['highlight']},
  283. \ 'depends' : ['Shougo/unite.vim']
  284. \ })
  285. NeoBundle 'osyo-manga/unite-qfixhowm'
  286. call neobundle#config('unite-qfixhowm', {
  287. \ 'lazy' : 1,
  288. \ 'autoload' : { 'unite_sources' : ['qfixhowm', 'qfixhowm/new']},
  289. \ 'depends' : ['Shougo/unite.vim', 'fuenor/qfixhowm']
  290. \ })
  291. NeoBundle 'osyo-manga/unite-quickfix'
  292. call neobundle#config('unite-quickfix', {
  293. \ 'lazy' : 1,
  294. \ 'autoload' : { 'unite_sources' : ['quickfix', 'location_list']},
  295. \ 'depends' : 'Shougo/unite.vim'
  296. \ })
  297. NeoBundle 'osyo-manga/vim-marching'
  298. call neobundle#config('vim-marching', {
  299. \ 'depends' : ['Shougo/vimproc.vim', 'osyo-manga/vim-reunions']
  300. \ })
  301. NeoBundle 'osyo-manga/vim-monster'
  302. call neobundle#config('vim-monster', {
  303. \ 'lazy' : 1,
  304. \ 'autoload' : { 'filetypes' : 'ruby' }
  305. \ })
  306. NeoBundle 'osyo-manga/vim-reunions'
  307. NeoBundle 'osyo-manga/vim-snowdrop'
  308. call neobundle#config('vim-snowdrop', {
  309. \ 'lazy' : 1,
  310. \ 'autoload' : { 'filetypes' : 'cpp' }
  311. \ })
  312. NeoBundle 'osyo-manga/vim-watchdogs'
  313. NeoBundle 'raa0121/vim-ulilith'
  314. NeoBundle 'rbtnn/vimconsole.vim'
  315. call neobundle#config('vimconsole.vim', {
  316. \ 'lazy' : 1,
  317. \ 'depends' : 'thinca/vim-prettyprint',
  318. \ 'autoload' : { 'commands' : 'VimConsoleOpen' }
  319. \ })
  320. NeoBundle 'ryutorion/vim-itunes'
  321. NeoBundle 'slim-template/vim-slim'
  322. NeoBundle 'stephpy/vim-php-cs-fixer'
  323. call neobundle#config('vim-php-cs-fixer', {
  324. \ 'lazy' : 1,
  325. \ 'autoload' : { 'filetypes' : 'php' }
  326. \ })
  327. NeoBundle 'supermomonga/thingspast.vim'
  328. "call neobundle#config('thingspast.vim', {
  329. " \ 'build' : { 'unix' : 'bundle install' }
  330. " \ })
  331. NeoBundle 'thinca/vim-ft-clojure'
  332. call neobundle#config('vim-ft-clojure', {
  333. \ 'lazy' : 1,
  334. \ 'autoload' : { 'filetypes' : 'clojure' }
  335. \ })
  336. NeoBundle 'thinca/vim-github'
  337. call neobundle#config('vim-github', {
  338. \ 'lazy' : 1,
  339. \ 'autoload' : { 'commands' : 'Github' }
  340. \ })
  341. NeoBundle 'thinca/vim-prettyprint'
  342. call neobundle#config('vim-prettyprint', {
  343. \ 'lazy' : 1,
  344. \ 'autoload' : { 'commands' : ['PP', 'PrettyPrint']}
  345. \ })
  346. NeoBundle 'thinca/vim-quickrun'
  347. call neobundle#config('vim-quickrun', {
  348. \ 'lazy' : 1,
  349. \ 'autoload' : {
  350. \ 'mappings' : [
  351. \ ['nxo', '<Plug>(quickrun)']],
  352. \ 'commands' : 'QuickRun',
  353. \ },
  354. \ })
  355. NeoBundle 'thinca/vim-ref'
  356. call neobundle#config('vim-ref', {
  357. \ 'lazy' : 1,
  358. \ 'autoload' : { 'commands' : ['Ref', 'RefHistory'],
  359. \ 'unite_sources' : ['ref/erlang', 'ref/man',
  360. \ 'ref/pydoc', 'ref/redis',
  361. \ 'ref/clojure',
  362. \ 'ref/refe', 'ref/webdict']}
  363. \ })
  364. NeoBundle 'thinca/vim-singleton'
  365. NeoBundle 'thinca/vim-splash'
  366. NeoBundle 'thinca/vim-textobj-function-javascript'
  367. call neobundle#config('vim-textobj-function-javascript', {
  368. \ 'depends' : ['kana/vim-textobj-function'],
  369. \ 'lazy' : 1,
  370. \ 'autoload' : { 'filetypes' : 'javascript' }
  371. \ })
  372. NeoBundle 'thinca/vim-threes'
  373. call neobundle#config('vim-threes', {
  374. \ 'lazy' : 1,
  375. \ 'autoload' : { 'commands' : 'ThreesStart' }
  376. \ })
  377. NeoBundle 'tpope/vim-cucumber'
  378. call neobundle#config('vim-cucumber', {
  379. \ 'lazy' : 1,
  380. \ 'autoload' : { 'filetypes' : 'cucumber' }
  381. \ })
  382. NeoBundle 'tsukkee/lingr-vim'
  383. call neobundle#config('lingr-vim', {
  384. \ 'lazy' : 1,
  385. \ 'autoload' : { 'commands' : 'LingrLaunch' }
  386. \ })
  387. NeoBundle 'tyru/kirikiri.vim'
  388. call neobundle#config('lingr-vim', {
  389. \ 'lazy' : 1,
  390. \ 'autoload' : { 'filetypes' : 'kscript' }
  391. \ })
  392. NeoBundle 'tyru/open-browser.vim'
  393. call neobundle#config('open-browser.vim',{
  394. \ 'lazy' : 1,
  395. \ 'autoload' : {
  396. \ 'mappings' : '<Plug>(open-browser-wwwsearch)',
  397. \ }
  398. \ })
  399. NeoBundle 'ujihisa/neco-ghc'
  400. call neobundle#config('neco-ghc', {
  401. \ 'lazy' : 1,
  402. \ 'autoload' : { 'filetypes' : 'haskell' }
  403. \ })
  404. NeoBundle 'ujihisa/neco-look'
  405. NeoBundle 'ujihisa/neoclojure.vim'
  406. call neobundle#config('neco-ghc', {
  407. \ 'lazy' : 1,
  408. \ 'autoload' : { 'filetypes' : 'clojure',
  409. \ 'unite_sources' : ['ref/neoclojure'] }
  410. \ })
  411. NeoBundle 'ujihisa/unite-colorscheme'
  412. call neobundle#config('unite-colorscheme', {
  413. \ 'lazy' : 1,
  414. \ 'autoload' : { 'unite_sources' : ['colorscheme'] }
  415. \ })
  416. NeoBundle 'ujihisa/vimshell-ssh'
  417. call neobundle#config('vimshell-ssh',{
  418. \ 'lazy' : 1,
  419. \ 'depends' : 'Shougo/vimshell',
  420. \ 'autoload' : { 'filetypes' : 'vimshell'}
  421. \ })
  422. NeoBundle 'vim-jp/vimdoc-ja'
  423. NeoBundle 'vim-jp/vital.vim'
  424. call neobundle#config('vital.vim', {
  425. \ 'lazy' : 1,
  426. \ 'autoload' : {
  427. \ 'commands' : ['Vitalize'],
  428. \ 'functions' : ['vital#of', 'vital']
  429. \ }
  430. \ })
  431. NeoBundle 'vim-scripts/AnsiEsc.vim'
  432. NeoBundle 'vim-scripts/sudo.vim'
  433. NeoBundle 'yoppi/fluentd.vim'
  434. call neobundle#config('fluentd.vim',{
  435. \ 'lazy' : 1,
  436. \ 'autoload' : { 'filetypes' : 'fluentd'}
  437. \ })
  438. if executable('w3m')
  439. NeoBundle 'yuratomo/w3m.vim'
  440. call neobundle#config('w3m.vim',{
  441. \ 'lazy' : 1,
  442. \ 'autoload' : { 'commands' : ['W3m', 'W3mTab']}
  443. \ })
  444. endif
  445. call neobundle#end()
  446. filetype plugin indent on
  447. if has('clientserver')
  448. call singleton#enable()
  449. end
  450. set ww+=h,l,>,<,[,]
  451. set mouse=a
  452. set ttymouse=xterm2
  453. set clipboard=unnamedplus
  454. " ,is: シェルを起動
  455. nnoremap <silent> ,is :VimShell<CR>
  456. " ,ipy: pythonを非同期で起動
  457. nnoremap <silent> ,ipy :VimShellInteractive python<CR>
  458. " ,irb: irbを非同期で起動
  459. nnoremap <silent> ,irb :VimShellInteractive irb<CR>
  460. " ,ss: 非同期で開いたインタプリタに現在の行を評価させる
  461. vmap <silent> ,ss :VimShellSendString<CR>
  462. " 選択中に,ss: 非同期で開いたインタプリタに選択行を評価させる
  463. nnoremap <silent> ,ss <S-v>:VimShellSendString<CR>
  464. " ,vs: vimshell
  465. nnoremap <silent> ,vs :tabnew +VimShell<CR>
  466. " ,vr: .vimrc
  467. nnoremap <silent> ,vr :tabnew ~/.vimrc<CR>:lcd<CR>
  468. nnoremap <silent> ,so :so ~/.vimrc<CR>
  469. nnoremap <silent> ,nu :tabnew +Unite\ neobundle/update<CR>
  470. nnoremap <silent> ,ll :tabnew +LingrLaunch<CR>
  471. nnoremap <Esc><Esc> :nohlsearch<CR><ESC>
  472. nnoremap <silent> ,ts :<C-u>tab stj <C-R>=expand('<cword>')<CR><CR>
  473. map / <Plug>(incsearch-forward)
  474. map ? <Plug>(incsearch-backward)
  475. map g/ <Plug>(incsearch-stay)
  476. if neobundle#is_installed('neocomplcache')
  477. let g:neocomplcache_enable_at_startup = 1
  478. let g:neocomplcache_enable_smart_case = 1
  479. let g:neocomplcache_enable_camel_case_completion = 1
  480. let g:neocomplcache_enable_underbar_completion = 1
  481. let g:neocomplcache_min_syntax_length = 3
  482. let g:neocomplcache_lock_buffer_name_pattern = '\*ku\*'
  483. let g:neocomplcache_keyword_patterns = get(g:, 'neocomplecache_keyword_patterns', {})
  484. let g:neocomplcache_keyword_patterns['default'] = '\h\w*'
  485. endif
  486. if neobundle#is_installed('neocomplete.vim')
  487. let g:neocomplete#enable_at_startup = 1
  488. let g:neocomplete#enable_smart_case = 1
  489. let g:neocomplete#enable_camel_case_completion = 1
  490. let g:neocomplete#enable_underbar_completion = 1
  491. let g:neocomplete#min_syntax_length = 3
  492. let g:neocomplete#lock_buffer_name_pattern = '\*ku\*'
  493. let g:neocomplete#keyword_patterns = get(g:, 'neocomplete#keyword_patterns', {})
  494. let g:neocomplete#keyword_patterns['default'] = '\h\w*'
  495. let g:neocomplete#force_omni_input_patterns = get(g:, 'neocomplete#force_omni_input_patterns', {})
  496. let g:neocomplete#sources#omni#input_patterns = get(g:, 'neocomplete#sources#omni#input_patterns', {})
  497. let g:neocomplete#text_mode_filetypes = {'tex': 1, 'plaintex': 1}
  498. let g:neocomplete#force_omni_input_patterns.cpp =
  499. \ '[^.[:digit:] *\t]\%(\.\|->\)\w*\|\h\w*::\w*'
  500. let g:neocomplete#force_omni_input_patterns.ruby = '[^. *\t]\.\|\h\w*::'
  501. let g:neocomplete#sources#omni#input_patterns.cs = '[^.]\.\%(\u\{2,}\)\?'
  502. endif
  503. let g:vimfiler_as_default_explorer = 1
  504. let g:vimfiler_safe_mode_by_default = 0
  505. "let g:neocomplcache#sources#rsense#home_directory = '/opt/rsense-0.3/'
  506. let g:neocomplcache_text_mode_filetypes = {
  507. \ 'tex': 1,
  508. \ 'plaintex': 1,
  509. \}
  510. let g:monster#completion#rcodetools#backend = "async_rct_complete"
  511. let g:neosnippet#snippets_directory = '~/.vim/snippet,~/.bundle/vim-snippets/snippets'
  512. "tabで補完候補の選択を行う
  513. imap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
  514. imap <expr><S-TAB> pumvisible() ? "\<C-u>" : "\<S-TAB>"
  515. imap <expr><CR> neosnippet#expandable_or_jumpable() ? "\<Plug>(neosnippet_expand_or_jump)" : "\<CR>"
  516. smap <expr><TAB> neosnippet#expandable_or_jumpable() ?
  517. \ "\<Plug>(neosnippet_expand_or_jump)"
  518. \: "\<TAB>"
  519. augroup vimrc
  520. autocmd!
  521. augroup END
  522. autocmd vimrc FileType css setlocal omnifunc=csscomplete#CompleteCSS
  523. autocmd vimrc FileType html,markdown setlocal omnifunc=htmlcomplete#CompleteTags
  524. autocmd vimrc FileType javascript setlocal omnifunc=javascriptcomplete#CompleteJS
  525. autocmd vimrc FileType python setlocal omnifunc=pythoncomplete#Complete
  526. autocmd vimrc FileType xml setlocal omnifunc=xmlcomplete#CompleteTags
  527. autocmd vimrc FileType cs setlocal omnifunc=OmniSharp#Complete
  528. autocmd vimrc FileType clojure setlocal omnifunc=neoclojure#complete#omni
  529. autocmd vimrc FileType quickrun AnsiEsc
  530. autocmd vimrc BufNewFile,BufRead *.{md,mdwn,mkd,mkdn,mark*} setlocal filetype=markdown
  531. autocmd vimrc BufNewFile,BufRead *.gradle setlocal filetype=groovy
  532. autocmd vimrc FileType php setlocal noexpandtab wrap tabstop=4 shiftwidth=4
  533. autocmd vimrc FileType java setlocal noexpandtab wrap tabstop=4 shiftwidth=4
  534. autocmd vimrc FileType ruby setlocal tags+=$HOME/ctags/ruby.tags
  535. autocmd vimrc FileType c setlocal tags+=$HOME/ctags/c.tags
  536. autocmd vimrc BufNewFile Gemfile Template Gemfile
  537. let g:netrw_nogx = 1
  538. nmap gx <Plug>(openbrowser-smart-search)
  539. vmap gx <Plug>(openbrowser-smart-search)
  540. let g:quickrun_config = {}
  541. let g:quickrun_config = {
  542. \ '_' : {
  543. \ 'hook/close_unite_quickfix/enable_hook_loaded' : 1,
  544. \ 'hook/unite_quickfix/enable_failure' : 1,
  545. \ 'hook/close_quickfix/enable_exit' : 1,
  546. \ 'hook/close_buffer/enable_failure' : 1,
  547. \ 'hook/close_buffer/enable_empty_data' : 1,
  548. \ 'outputter' : 'multi:buffer:quickfix',
  549. \ 'hook/u_nya_/enable' : 1,
  550. \ 'hook/sweep/enable' : 0,
  551. \ 'outputter/buffer/split' : ':botright 15sp',
  552. \ 'outputter/buffer/running_mark' : 'バン(∩`・ω・)バンバンバンバン゙ン',
  553. \ 'runner' : 'vimproc',
  554. \ 'runner/vimproc/updatetime' : 40,
  555. \ 'runner/vimproc/sleep' : 0,
  556. \ }
  557. \ }
  558. let g:quickrun_config['markdown'] = {
  559. \ 'outputter': 'browser'
  560. \}
  561. let g:quickrun_config.ruby = {
  562. \ 'command': 'ruby',
  563. \ 'exec': '/usr/bin/env ruby %s',
  564. \ 'tempfile': '{tempname()}.rb'
  565. \}
  566. let g:quickrun_config['clojure/neoclojure'] = {
  567. \ 'type' : 'clojure/neoclojure',
  568. \ 'runner' : 'neoclojure',
  569. \ 'command' : 'dummy',
  570. \ 'tempfile' : '%{tempname()}.clj'
  571. \}
  572. let g:quickrun_config.cpp = {
  573. \ 'cmdopt': '-std=c++1y -Wall'
  574. \ }
  575. call watchdogs#setup(g:quickrun_config)
  576. let g:lingr_vim_user = 'raa0121'
  577. let g:J6uil_display_offline = 0
  578. let g:J6uil_display_online = 0
  579. let g:J6uil_echo_presence = 1
  580. let g:J6uil_display_icon = 0
  581. let g:J6uil_display_interval = 0
  582. let g:J6uil_updatetime = 1000
  583. let QFixHowm_Key = 'g'
  584. let howm_dir = '~/howm'
  585. let howm_filename = '%Y/%m/%Y-%m-%d-%H%M%S.txt'
  586. let howm_fileencoding = 'utf-8'
  587. let howm_fileformat = 'unix'
  588. let g:qfixmemo_calendar = 0
  589. let g:calendar_howm_syntax = 0
  590. let mygrepprg = 'grep'
  591. if has('win32unix')
  592. let MyGrep_cygwin17 = 1
  593. endif
  594. let g:calendar_google_calendar = 1
  595. let g:calendar_google_task = 1
  596. let g:marching_clang_command = '/usr/bin/clang'
  597. let g:marching_clang_command_option="-std=c++1y"
  598. let g:marching_enable_neocomplete = 1
  599. let g:marching_include_paths = ['/usr/include/c++/4.8.2/']
  600. let g:snowdrop#libclang_path='/usr/lib'
  601. let g:conoline_auto_enable = 1
  602. call unite#filters#matcher_default#use(['matcher_fuzzy'])
  603. let g:unite_enable_start_insert = 1
  604. let g:unite_source_directory_mru_long_limit = 3000
  605. let g:unite_source_file_mru_filename_format = ''
  606. let g:unite_source_file_mru_long_limit = 3000
  607. let g:unite_source_history_yank_enable = 1
  608. let g:unite_split_rule = 'botright'
  609. let g:unite_winheight = 15
  610. call textobj#user#plugin('datetime', {
  611. \ 'date': {
  612. \ 'pattern': '\<\d\d\d\d-\d\d-\d\d\>',
  613. \ 'select': ['ad', 'id'],
  614. \ },
  615. \ 'time': {
  616. \ 'pattern': '\<\d\d:\d\d:\d\d\>',
  617. \ 'select': ['at', 'it'],
  618. \ },
  619. \ })
  620. let g:php_cs_fixer_level = "all"
  621. let g:php_cs_fixer_config = "default"
  622. let g:php_cs_fixer_php_path = "php"
  623. let g:php_cs_fixer_enable_default_mapping = 1
  624. let g:php_cs_fixer_dry_run = 0
  625. let g:php_cs_fixer_verbose = 0
  626. augroup plugin-lingr-vim
  627. autocmd!
  628. autocmd FileType lingr-messages nmap <silent> <buffer> t <Plug>(lingr-messages-show-say-buffer)
  629. autocmd FileType lingr-say let &syntax='clojure'
  630. augroup END
  631. function! s:SID_PREFIX()
  632. return matchstr(expand('<sfile>'), '<SNR>\d\+_')
  633. endfunction
  634. set titlelen=100
  635. set guioptions-=e
  636. autocmd vimrc BufEnter * let &titlestring = '%{' . s:SID_PREFIX() . 'titlestring()}'
  637. autocmd vimrc User plugin-lingr-unread let &titlestring = '%{' . s:SID_PREFIX() . 'titlestring()}'
  638. if !has('gui_running')
  639. set t_Co=256
  640. endif
  641. if exists('$TMUX') || exists('$WINDOW')
  642. set t_ts=k
  643. set t_fs=\
  644. endif
  645. function! s:titlestring()
  646. if &filetype =~ '^lingr'
  647. let &titlestring = 'lingr: ' . lingr#unread_count()
  648. else
  649. let &titlestring = bufname('')
  650. endif
  651. endfunction
  652. " tabline
  653. set showtabline=2 " always show tabline
  654. let g:lightline = {
  655. \ 'colorscheme': 'wombat',
  656. \ 'component': {
  657. \ 'readonly': '%{&readonly?"\u2b64":""}'
  658. \ },
  659. \ 'separator': { 'left': "\u2b80", 'right': "\u2b82" },
  660. \ 'subseparator': { 'left': "\u2b81", 'right': "\u2b83" }
  661. \ }
  662. let &tabline = '%!' . s:SID_PREFIX() . 'tabline()'
  663. function! s:tabline()
  664. " show each tab
  665. let s = ''
  666. for i in range(1, tabpagenr('$'))
  667. let list = tabpagebuflist(i)
  668. let nr = tabpagewinnr(i)
  669. let current_tabnr = tabpagenr()
  670. "let title = bufname('')
  671. if i == current_tabnr
  672. let title = fnamemodify(getcwd(), ':t') . '/'
  673. "let title = bufname('')
  674. else
  675. let title = fnamemodify(gettabvar(i, 'cwd'), ':t') . '/'
  676. endif
  677. let title = empty(title) ? '[No Name]' : title
  678. let s .= i == current_tabnr ? '%#TabLineSel#' : '%#TabLine#'
  679. let s .= '%' . i . 'T[' . i . '] ' . title
  680. let s .= ' '
  681. endfor
  682. " show lingr unread count
  683. let lingr_unread = ""
  684. if exists('*lingr#unread_count')
  685. let lingr_unread_count = lingr#unread_count()
  686. if lingr_unread_count > 0
  687. let lingr_unread = "%#ErrorMsg#(" . lingr_unread_count . ")"
  688. elseif lingr_unread_count == 0
  689. let lingr_unread = "()"
  690. endif
  691. endif
  692. " build tabline
  693. let s .= '%#TabLineFill#%T%=%<[' . getcwd() . ']' . lingr_unread
  694. return s
  695. endfunction
  696. augroup vimrc-scratch-buffer
  697. autocmd!
  698. " Make a scratch buffer when unnamed buffer.
  699. autocmd BufEnter * call s:scratch_buffer()
  700. autocmd FileType qfreplace autocmd! vimrc-scratch * <buffer>
  701. function! s:scratch_buffer()
  702. if exists('b:scratch_buffer') || bufname('%') !=# '' || &l:buftype !=# ''
  703. return
  704. endif
  705. let b:scratch_buffer = 1
  706. setlocal buftype=nofile nobuflisted noswapfile bufhidden=hide
  707. augroup vimrc-scratch
  708. autocmd! * <buffer>
  709. autocmd BufWriteCmd <buffer> call s:scratch_on_BufWriteCmd()
  710. augroup END
  711. endfunction
  712. function! s:scratch_on_BufWriteCmd()
  713. silent! setl buftype< buflisted< swapfile< bufhidden< nomodified
  714. autocmd! vimrc-scratch * <buffer>
  715. if bufname('%') ==# '' && exists('b:scratch_buffer')
  716. execute 'saveas' . (v:cmdbang ? '!' : '') ' <afile>'
  717. filetype detect
  718. endif
  719. unlet! b:scratch_buffer
  720. endfunction
  721. augroup END
  722. 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
  723. let g:github_user = 'raa0121'
  724. let g:github#user = 'raa0121'