.vimrc 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977
  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 ambiwidth=double
  30. colorscheme elflord
  31. if has('gui_running')
  32. colorscheme evening
  33. endif
  34. syntax on
  35. set enc=utf8
  36. set updatetime=200
  37. " ファイル名に大文字小文字の区別がないシステム用の設定:
  38. " (例: DOS/Windows/MacOS)
  39. "
  40. if filereadable($VIM . '/vimrc') && filereadable($VIM . '/ViMrC')
  41. " tagsファイルの重複防止
  42. set tags=./tags,tags
  43. endif
  44. " コンソールでのカラー表示のための設定(暫定的にUNIX専用)
  45. if has('unix') && !has('gui_running')
  46. let uname = system('uname')
  47. if uname =~? "linux"
  48. set term=builtin_linux
  49. elseif uname =~? "freebsd"
  50. set term=builtin_cons25
  51. elseif uname =~? "Darwin"
  52. set term=beos-ansi
  53. else
  54. set term=builtin_xterm
  55. endif
  56. unlet uname
  57. endif
  58. " コンソール版で環境変数$DISPLAYが設定されていると起動が遅くなる件へ対応
  59. if !has('gui_running') && has('xterm_clipboard')
  60. set clipboard=exclude:cons\\\|linux\\\|cygwin\\\|rxvt\\\|screen
  61. endif
  62. " タブページの切り替えをWindowsのように
  63. " CTRL+Tab SHIFT+Tabで行うように.
  64. if v:version >= 700
  65. nnoremap <C-Tab> gt
  66. nnoremap <C-S-Tab> gT
  67. endif
  68. if has('+regexpengine')
  69. set re=0
  70. endif
  71. let g:vim_indent_cont = 2
  72. filetype off
  73. if has('vim_starting')
  74. set runtimepath+=~/.vim/neobundle.vim.git
  75. endif
  76. call neobundle#begin(expand('~/.bundle'))
  77. let g:neobundle_default_git_protocol='https'
  78. if has('python')
  79. NeoBundle 'OmniSharp/omnisharp-vim'
  80. call neobundle#config('omnisharp-vim', {
  81. \ 'lazy' : 1,
  82. \ 'autoload' : {'filetypes': ['cs'] }
  83. \ })
  84. endif
  85. NeoBundleFetch 'Shougo/neobundle.vim'
  86. NeoBundle 'Shougo/echodoc'
  87. call neobundle#config('echodoc', {
  88. \ 'lazy' : 1,
  89. \ 'autoload' : {
  90. \ 'insert' : 1,
  91. \ }})
  92. if has('lua')
  93. NeoBundle 'Shougo/neocomplete.vim'
  94. else
  95. NeoBundle 'Shougo/neocomplcache'
  96. endif
  97. NeoBundle 'Shougo/neomru.vim'
  98. NeoBundle 'Shougo/neosnippet'
  99. call neobundle#config('neosnippet', {
  100. \ 'lazy' : 1,
  101. \ 'autoload' : {
  102. \ 'insert' : 1,
  103. \ 'filetypes' : 'snippet',
  104. \ 'unite_sources' : ['snippet', 'neosnippet/user', 'neosnippet/runtime'],
  105. \ }})
  106. NeoBundle 'Shougo/neosnippet-snippets'
  107. call neobundle#config('neosnippet-snippets', {
  108. \ 'depends' : 'Shougo/neosnippet'
  109. \ })
  110. NeoBundle 'Shougo/unite-ssh'
  111. call neobundle#config('unite-ssh', {
  112. \ 'lazy' : 1,
  113. \ 'depends' : 'Shougo/unite.vim',
  114. \ 'autoload' : { 'unite_sources' : 'ssh' }
  115. \ })
  116. NeoBundle 'Shougo/unite.vim'
  117. call neobundle#config('unite.vim',{
  118. \ 'lazy' : 1,
  119. \ 'autoload' : {
  120. \ 'commands' : [{ 'name' : 'Unite',
  121. \ 'complete' : 'customlist,unite#complete_source'},
  122. \ 'UniteWithCursorWord', 'UniteWithInput']
  123. \ }})
  124. NeoBundle 'Shougo/unite-outline'
  125. NeoBundle 'Shougo/vimfiler'
  126. call neobundle#config('vimfiler', {
  127. \ 'lazy' : 1,
  128. \ 'depends' : 'Shougo/unite.vim',
  129. \ 'autoload' : {
  130. \ 'commands' : [
  131. \ { 'name' : 'VimFiler',
  132. \ 'complete' : 'customlist,vimfiler#complete' },
  133. \ { 'name' : 'VimFilerExplorer',
  134. \ 'complete' : 'customlist,vimfiler#complete' },
  135. \ { 'name' : 'VimFilerBufferDir',
  136. \ 'complete' : 'customlist,vimfiler#complete' },
  137. \ { 'name' : 'Edit',
  138. \ 'complete' : 'customlist,vimfiler#complete' },
  139. \ { 'name' : 'Write',
  140. \ 'complete' : 'customlist,vimfiler#complete' },
  141. \ 'Read', 'Source'],
  142. \ 'mappings' : ['<Plug>(vimfiler_switch)'],
  143. \ 'explorer' : 1,
  144. \ }
  145. \ })
  146. if has('win32') || has('win64')
  147. NeoBundleFetch 'jnwhiteh/vim-golang'
  148. call neobundle#config('vim-golang', {
  149. \ 'type' : 'nosync',
  150. \ 'lazy' : 1,
  151. \ 'autoload' : { 'filetypes' : 'go'}
  152. \ })
  153. else
  154. NeoBundle 'Shougo/vimproc.vim'
  155. call neobundle#config('vimproc.vim', {
  156. \ 'build' : {
  157. \ 'windows' : 'make -f make_mingw64.mak',
  158. \ 'cygwin' : 'make -f make_cygwin.mak',
  159. \ 'mac' : 'make -f make_mac.mak',
  160. \ 'unix' : 'make -f make_unix.mak',
  161. \ },
  162. \ })
  163. NeoBundle 'jnwhiteh/vim-golang'
  164. call neobundle#config('vim-golang', {
  165. \ 'lazy' : 1,
  166. \ 'autoload' : { 'filetypes' : 'go'}
  167. \ })
  168. endif
  169. NeoBundle 'Shougo/vimshell'
  170. call neobundle#config('vimshell', {
  171. \ 'lazy' : 1,
  172. \ 'autoload' : {
  173. \ 'commands' : [{ 'name' : 'VimShell',
  174. \ 'complete' : 'customlist,vimshell#complete'},
  175. \ 'VimShellExecute', 'VimShellInteractive',
  176. \ 'VimShellTerminal', 'VimShellPop'],
  177. \ 'mappings' : ['<Plug>(vimshell_switch)']
  178. \ }})
  179. NeoBundle 'basyura/J6uil.vim'
  180. call neobundle#config('J6uil.vim', {
  181. \ 'lazy' : 1,
  182. \ 'autoload' : { 'commands' : 'J6uil',
  183. \ 'unice_source' : ['J6uil/rooms', 'J6uil/members']},
  184. \ 'depends' : 'mattn/webapi-vim',
  185. \ })
  186. NeoBundle 'cespare/vim-toml'
  187. call neobundle#config ('vim-toml', {
  188. \ 'lazy' : 1,
  189. \ 'autoload' : { 'filetypes' : 'toml' }
  190. \ })
  191. NeoBundle 'cohama/agit.vim'
  192. NeoBundle 'dag/vim2hs'
  193. call neobundle#config ('vim2hs', {
  194. \ 'lazy' : 1,
  195. \ 'autoload' : { 'filetypes' : 'haskell' }
  196. \ })
  197. NeoBundle 'eagletmt/ghcmod-vim'
  198. call neobundle#config('ghcmod-vim', {
  199. \ 'lazy' : 1,
  200. \ 'autoload' : { 'filetypes' : 'haskell' }
  201. \ })
  202. if has('python')
  203. NeoBundle 'editorconfig/editorconfig-vim'
  204. endif
  205. NeoBundle 'groenewege/vim-less'
  206. call neobundle#config('vim-less', {
  207. \ 'lazy' : 1,
  208. \ 'autoload' : { 'filetypes' : 'less' }
  209. \ })
  210. NeoBundle 'haya14busa/incsearch.vim'
  211. NeoBundle 'honza/vim-snippets'
  212. NeoBundle 'itchyny/calendar.vim'
  213. NeoBundle 'itchyny/lightline.vim'
  214. NeoBundle 'jceb/vim-orgmode'
  215. call neobundle#config('vim-orgmode', {
  216. \ 'lazy' : 1,
  217. \ 'autoload' : { 'filetypes' : 'org' }
  218. \ })
  219. NeoBundle 'justinmk/vim-dirvish'
  220. if has('python')
  221. NeoBundle 'kakkyz81/evervim'
  222. endif
  223. NeoBundle 'kamichidu/unite-javaimport', ''
  224. call neobundle#config('unite-javaimport', {
  225. \ 'lazy' : 1,
  226. \ 'depends' : [
  227. \ 'kamichidu/vim-javalang', 'kamichidu/vim-javaclasspath',
  228. \ 'Shougo/unite.vim'],
  229. \ 'autoload' : { 'filetypes' : ['java', 'scala', 'clojure']}
  230. \ })
  231. NeoBundle 'kamichidu/vim-milqi', 'dev'
  232. NeoBundle 'kamichidu/vim-ref-java'
  233. call neobundle#config('vim-ref-java', {
  234. \ 'depends' : [ 'mattn/wwwrenderer-vim' ],
  235. \ })
  236. NeoBundle 'kamichidu/vim-vdbc'
  237. call neobundle#config('vim-vdbc', {
  238. \ 'depends' : ['Shougo/vimproc.vim'] ,
  239. \ 'build': {
  240. \ 'unix' : 'make -f Makefile',
  241. \ 'windows' : 'make -f Makefile.w64'
  242. \ }
  243. \ })
  244. NeoBundle 'kana/vim-smartinput'
  245. NeoBundle 'kana/vim-textobj-function'
  246. NeoBundle 'kana/vim-textobj-user'
  247. NeoBundle 'kchmck/vim-coffee-script'
  248. call neobundle#config('vim-coffee-script',{
  249. \ 'lazy' : 1,
  250. \ 'autoload' : { 'filetypes' : 'coffee' }
  251. \ })
  252. NeoBundle 'lambdalisue/vim-gita'
  253. call neobundle#config('vim-gita', {
  254. \ 'lazy': 1,
  255. \ 'autoload': { 'commands': ['Gita'] }
  256. \ })
  257. NeoBundle 'lambdalisue/vim-unified-diff'
  258. NeoBundle 'leafgarland/typescript-vim'
  259. call neobundle#config('typescript-vim', {
  260. \ 'lazy' : 1,
  261. \ 'autoload' : { 'filetypes' : 'typescript'}
  262. \ })
  263. NeoBundle 'machakann/vim-colorscheme-imas'
  264. NeoBundle 'mattn/benchvimrc-vim'
  265. call neobundle#config('benchvimrc-vim', {
  266. \ 'lazy' : 1,
  267. \ 'autoload' : { 'commands' : 'BenchVimrc' }
  268. \ })
  269. NeoBundle 'mattn/flappyvird-vim'
  270. call neobundle#config('flappyvird-vim', {
  271. \ 'lazy' : 1,
  272. \ 'autoload' : { 'commands' : 'FlappyVird' }
  273. \ })
  274. NeoBundle 'mattn/gist-vim'
  275. call neobundle#config('gist-vim', {
  276. \ 'lazy' : 1,
  277. \ 'autoload' : { 'commands' : 'Gist' }
  278. \ })
  279. NeoBundle 'mattn/libcallex-vim'
  280. NeoBundle 'mattn/sonictemplate-vim'
  281. call neobundle#config('sonictemplate-vim', {
  282. \ 'lazy' : 1,
  283. \ 'autoload' : { 'commands' : 'Template' }
  284. \ })
  285. NeoBundle 'mattn/unite-rhythmbox'
  286. call neobundle#config('unite-rhythmbox', {
  287. \ 'lazy' : 1,
  288. \ 'autoload' : { 'unite_sources' : 'rhythmbox' },
  289. \ 'depends' : 'Shougo/unite.vim'
  290. \ })
  291. NeoBundle 'mattn/webapi-vim'
  292. NeoBundle 'miyakogi/conoline.vim'
  293. NeoBundle 'osyo-manga/quickrun-hook-u-nya-'
  294. call neobundle#config('quickrun-hook-u-nya-', {
  295. \ 'depends' : 'thinca/vim-quickrun'
  296. \ })
  297. NeoBundle 'osyo-manga/quickrun-hook-vcvarsall'
  298. NeoBundle 'osyo-manga/shabadou.vim'
  299. NeoBundle 'osyo-manga/unite-filetype'
  300. call neobundle#config('unite-filetype', {
  301. \ 'lazy' : 1,
  302. \ 'autoload' : { 'unite_sources' : ['filetype', 'filetype/new']},
  303. \ 'depends' : ['Shougo/unite.vim']
  304. \ })
  305. NeoBundle 'osyo-manga/unite-highlight'
  306. call neobundle#config('unite-highlight', {
  307. \ 'lazy' : 1,
  308. \ 'autoload' : { 'unite_sources' : ['highlight']},
  309. \ 'depends' : ['Shougo/unite.vim']
  310. \ })
  311. NeoBundle 'osyo-manga/unite-quickfix'
  312. call neobundle#config('unite-quickfix', {
  313. \ 'lazy' : 1,
  314. \ 'autoload' : { 'unite_sources' : ['quickfix', 'location_list']},
  315. \ 'depends' : 'Shougo/unite.vim'
  316. \ })
  317. NeoBundle 'osyo-manga/vim-marching'
  318. call neobundle#config('vim-marching', {
  319. \ 'lazy' : 1,
  320. \ 'autoload' : { 'filetypes' : ['c', 'cpp'] },
  321. \ 'depends' : ['Shougo/vimproc.vim', 'osyo-manga/vim-reunions']
  322. \ })
  323. NeoBundle 'osyo-manga/vim-monster'
  324. call neobundle#config('vim-monster', {
  325. \ 'lazy' : 1,
  326. \ 'autoload' : { 'filetypes' : 'ruby' }
  327. \ })
  328. NeoBundle 'osyo-manga/vim-over'
  329. NeoBundle 'osyo-manga/vim-reunions'
  330. NeoBundle 'osyo-manga/vim-snowdrop'
  331. call neobundle#config('vim-snowdrop', {
  332. \ 'lazy' : 1,
  333. \ 'autoload' : { 'filetypes' : 'cpp' }
  334. \ })
  335. NeoBundle 'osyo-manga/vim-watchdogs'
  336. NeoBundle 'Quramy/tsuquyomi'
  337. call neobundle#config('tsuquyomi', {
  338. \ 'lazy' : 1,
  339. \ 'autoload' : { 'filetypes' : 'typescript'}
  340. \ })
  341. NeoBundle 'raa0121/vim-ulilith'
  342. NeoBundle 'rbtnn/colorscheme-gochiusa.vim'
  343. NeoBundle 'rbtnn/game_engine.vim'
  344. NeoBundle 'rbtnn/vimconsole.vim'
  345. call neobundle#config('vimconsole.vim', {
  346. \ 'lazy' : 1,
  347. \ 'depends' : 'thinca/vim-prettyprint',
  348. \ 'autoload' : { 'commands' : 'VimConsoleOpen' }
  349. \ })
  350. NeoBundle 'rhysd/vim-crystal'
  351. call neobundle#config('vim-crystal', {
  352. \ 'lazy' : 1,
  353. \ 'autoload' : { 'filetypes' : 'crystal' }
  354. \ })
  355. NeoBundle 'rust-lang/rust.vim'
  356. call neobundle#config('rust.vim', {
  357. \ 'lazy' : 1,
  358. \ 'autoload' : { 'filetypes' : 'rust' }
  359. \ })
  360. NeoBundle 'ryutorion/vim-itunes'
  361. NeoBundle 'slim-template/vim-slim'
  362. NeoBundle 'stephpy/vim-php-cs-fixer'
  363. call neobundle#config('vim-php-cs-fixer', {
  364. \ 'lazy' : 1,
  365. \ 'autoload' : { 'filetypes' : 'php' }
  366. \ })
  367. NeoBundle 'supermomonga/thingspast.vim'
  368. "call neobundle#config('thingspast.vim', {
  369. " \ 'build' : { 'unix' : 'bundle install' }
  370. " \ })
  371. NeoBundle 'thinca/vim-ft-clojure'
  372. call neobundle#config('vim-ft-clojure', {
  373. \ 'lazy' : 1,
  374. \ 'autoload' : { 'filetypes' : 'clojure' }
  375. \ })
  376. NeoBundle 'thinca/vim-github'
  377. call neobundle#config('vim-github', {
  378. \ 'lazy' : 1,
  379. \ 'autoload' : { 'commands' : 'Github' }
  380. \ })
  381. NeoBundle 'thinca/vim-prettyprint'
  382. call neobundle#config('vim-prettyprint', {
  383. \ 'lazy' : 1,
  384. \ 'autoload' : { 'commands' : ['PP', 'PrettyPrint']}
  385. \ })
  386. "NeoBundle 'thinca/vim-quickrun'
  387. NeoBundle 'ujihisa/vim-quickrun', 'concproc'
  388. call neobundle#config('vim-quickrun', {
  389. \ 'lazy' : 1,
  390. \ 'autoload' : {
  391. \ 'mappings' : [
  392. \ ['nxo', '<Plug>(quickrun)']],
  393. \ 'commands' : 'QuickRun',
  394. \ },
  395. \ })
  396. NeoBundle 'thinca/vim-ref'
  397. call neobundle#config('vim-ref', {
  398. \ 'lazy' : 1,
  399. \ 'autoload' : { 'commands' : ['Ref', 'RefHistory'],
  400. \ 'unite_sources' : ['ref/erlang', 'ref/man',
  401. \ 'ref/pydoc', 'ref/redis',
  402. \ 'ref/clojure',
  403. \ 'ref/refe', 'ref/webdict']}
  404. \ })
  405. NeoBundle 'thinca/vim-singleton'
  406. NeoBundle 'thinca/vim-splash'
  407. NeoBundle 'thinca/vim-textobj-function-javascript'
  408. call neobundle#config('vim-textobj-function-javascript', {
  409. \ 'depends' : ['kana/vim-textobj-function'],
  410. \ 'lazy' : 1,
  411. \ 'autoload' : { 'filetypes' : 'javascript' }
  412. \ })
  413. NeoBundle 'thinca/vim-threes'
  414. call neobundle#config('vim-threes', {
  415. \ 'lazy' : 1,
  416. \ 'autoload' : { 'commands' : 'ThreesStart' }
  417. \ })
  418. NeoBundle 'tpope/vim-cucumber'
  419. call neobundle#config('vim-cucumber', {
  420. \ 'lazy' : 1,
  421. \ 'autoload' : { 'filetypes' : 'cucumber' }
  422. \ })
  423. NeoBundle 'tsukkee/lingr-vim'
  424. call neobundle#config('lingr-vim', {
  425. \ 'lazy' : 1,
  426. \ 'autoload' : { 'commands' : 'LingrLaunch' }
  427. \ })
  428. NeoBundle 'tyru/kirikiri.vim'
  429. call neobundle#config('lingr-vim', {
  430. \ 'lazy' : 1,
  431. \ 'autoload' : { 'filetypes' : 'kscript' }
  432. \ })
  433. NeoBundle 'tyru/open-browser.vim'
  434. call neobundle#config('open-browser.vim',{
  435. \ 'lazy' : 1,
  436. \ 'autoload' : {
  437. \ 'mappings' : '<Plug>(open-browser-wwwsearch)',
  438. \ }
  439. \ })
  440. NeoBundle 'ujihisa/neco-ghc'
  441. call neobundle#config('neco-ghc', {
  442. \ 'lazy' : 1,
  443. \ 'autoload' : { 'filetypes' : 'haskell' }
  444. \ })
  445. if executable('look')
  446. NeoBundle 'ujihisa/neco-look'
  447. endif
  448. NeoBundle 'ujihisa/neoclojure.vim'
  449. call neobundle#config('neco-ghc', {
  450. \ 'lazy' : 1,
  451. \ 'autoload' : { 'filetypes' : 'clojure',
  452. \ 'unite_sources' : ['ref/neoclojure'] }
  453. \ })
  454. NeoBundle 'ujihisa/unite-colorscheme'
  455. call neobundle#config('unite-colorscheme', {
  456. \ 'lazy' : 1,
  457. \ 'autoload' : { 'unite_sources' : ['colorscheme'] }
  458. \ })
  459. NeoBundle 'ujihisa/vimshell-ssh'
  460. call neobundle#config('vimshell-ssh',{
  461. \ 'lazy' : 1,
  462. \ 'depends' : 'Shougo/vimshell',
  463. \ 'autoload' : { 'filetypes' : 'vimshell'}
  464. \ })
  465. NeoBundle 'vim-jp/cpp-vim', {
  466. \ 'lazy' : 1,
  467. \ 'autoload' : {'filetypes' : 'cpp'}
  468. \ }
  469. NeoBundle 'vim-jp/vimdoc-ja'
  470. NeoBundle 'vim-jp/vital.vim'
  471. call neobundle#config('vital.vim', {
  472. \ 'lazy' : 1,
  473. \ 'autoload' : {
  474. \ 'commands' : ['Vitalize'],
  475. \ 'functions' : ['vital#of', 'vital']
  476. \ }
  477. \ })
  478. NeoBundle 'vim-scripts/AnsiEsc.vim'
  479. NeoBundle 'vim-scripts/sudo.vim'
  480. NeoBundle 'yoppi/fluentd.vim'
  481. call neobundle#config('fluentd.vim',{
  482. \ 'lazy' : 1,
  483. \ 'autoload' : { 'filetypes' : 'fluentd'}
  484. \ })
  485. if executable('w3m')
  486. NeoBundle 'yuratomo/w3m.vim'
  487. call neobundle#config('w3m.vim',{
  488. \ 'lazy' : 1,
  489. \ 'autoload' : { 'commands' : ['W3m', 'W3mTab']}
  490. \ })
  491. endif
  492. call neobundle#end()
  493. filetype plugin indent on
  494. if has('clientserver')
  495. call singleton#enable()
  496. end
  497. set ww+=h,l,>,<,[,]
  498. set mouse=a
  499. set ttymouse=xterm2
  500. set clipboard=unnamedplus
  501. " ,is: シェルを起動
  502. nnoremap <silent> ,is :VimShell<CR>
  503. " ,ipy: pythonを非同期で起動
  504. nnoremap <silent> ,ipy :VimShellInteractive python<CR>
  505. " ,irb: irbを非同期で起動
  506. nnoremap <silent> ,irb :VimShellInteractive irb<CR>
  507. " ,ss: 非同期で開いたインタプリタに現在の行を評価させる
  508. vmap <silent> ,ss :VimShellSendString<CR>
  509. " 選択中に,ss: 非同期で開いたインタプリタに選択行を評価させる
  510. nnoremap <silent> ,ss <S-v>:VimShellSendString<CR>
  511. " ,vs: vimshell
  512. nnoremap <silent> ,vs :tabnew +VimShell<CR>
  513. " ,vr: .vimrc
  514. nnoremap <silent> ,vr :tabnew ~/.vimrc<CR>:lcd<CR>
  515. nnoremap <silent> ,so :so ~/.vimrc<CR>
  516. nnoremap <silent> ,nu :tabnew +Unite\ neobundle/update<CR>
  517. nnoremap <silent> ,ll :tabnew +LingrLaunch<CR>
  518. nnoremap <Esc><Esc> :nohlsearch<CR><ESC>
  519. nnoremap <silent> ,ts :<C-u>tab stj <C-R>=expand('<cword>')<CR><CR>
  520. map / <Plug>(incsearch-forward)
  521. map ? <Plug>(incsearch-backward)
  522. map g/ <Plug>(incsearch-stay)
  523. if neobundle#is_installed('neocomplcache')
  524. let g:neocomplcache_enable_at_startup = 1
  525. let g:neocomplcache_enable_smart_case = 1
  526. let g:neocomplcache_enable_camel_case_completion = 1
  527. let g:neocomplcache_enable_underbar_completion = 1
  528. let g:neocomplcache_min_syntax_length = 3
  529. let g:neocomplcache_lock_buffer_name_pattern = '\*ku\*'
  530. let g:neocomplcache_keyword_patterns = get(g:, 'neocomplecache_keyword_patterns', {})
  531. let g:neocomplcache_keyword_patterns['default'] = '\h\w*'
  532. endif
  533. if neobundle#is_installed('neocomplete.vim')
  534. let g:neocomplete#enable_at_startup = 1
  535. let g:neocomplete#enable_smart_case = 1
  536. let g:neocomplete#enable_camel_case_completion = 1
  537. let g:neocomplete#enable_underbar_completion = 1
  538. let g:neocomplete#min_syntax_length = 3
  539. let g:neocomplete#lock_buffer_name_pattern = '\*ku\*'
  540. let g:neocomplete#keyword_patterns = get(g:, 'neocomplete#keyword_patterns', {})
  541. let g:neocomplete#keyword_patterns['default'] = '\h\w*'
  542. let g:neocomplete#force_omni_input_patterns = get(g:, 'neocomplete#force_omni_input_patterns', {})
  543. let g:neocomplete#sources#omni#input_patterns = get(g:, 'neocomplete#sources#omni#input_patterns', {})
  544. let g:neocomplete#text_mode_filetypes = {'tex': 1, 'plaintex': 1}
  545. let g:neocomplete#force_omni_input_patterns.cpp =
  546. \ '[^.[:digit:] *\t]\%(\.\|->\)\w*\|\h\w*::\w*'
  547. let g:neocomplete#sources#omni#input_patterns.ruby = '[^. *\t]\.\|\h\w*::'
  548. let g:neocomplete#sources#omni#input_patterns.cs = '[^.]\.\%(\u\{2,}\)\?'
  549. endif
  550. "let g:vimfiler_as_default_explorer = 1
  551. "let g:vimfiler_safe_mode_by_default = 0
  552. "let g:neocomplcache#sources#rsense#home_directory = '/opt/rsense-0.3/'
  553. let g:neocomplcache_text_mode_filetypes = {
  554. \ 'tex': 1,
  555. \ 'plaintex': 1,
  556. \}
  557. let g:monster#completion#rcodetools#backend = "async_rct_complete"
  558. let g:neosnippet#snippets_directory = '~/.vim/snippet,~/.bundle/vim-snippets/snippets'
  559. "tabで補完候補の選択を行う
  560. imap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
  561. imap <expr><S-TAB> pumvisible() ? "\<C-u>" : "\<S-TAB>"
  562. imap <expr><CR> neosnippet#expandable_or_jumpable() ? "\<Plug>(neosnippet_expand_or_jump)" : "\<CR>"
  563. smap <expr><TAB> neosnippet#expandable_or_jumpable() ?
  564. \ "\<Plug>(neosnippet_expand_or_jump)"
  565. \: "\<TAB>"
  566. augroup vimrc
  567. autocmd!
  568. autocmd FileType css setlocal omnifunc=csscomplete#CompleteCSS
  569. autocmd FileType html,markdown setlocal omnifunc=htmlcomplete#CompleteTags
  570. autocmd FileType javascript setlocal omnifunc=javascriptcomplete#CompleteJS
  571. autocmd FileType python setlocal omnifunc=pythoncomplete#Complete
  572. autocmd FileType xml setlocal omnifunc=xmlcomplete#CompleteTags
  573. autocmd FileType cs setlocal omnifunc=OmniSharp#Complete
  574. autocmd FileType clojure setlocal omnifunc=neoclojure#complete#omni
  575. autocmd FileType quickrun AnsiEsc
  576. autocmd BufNewFile,BufRead *.{md,mdwn,mkd,mkdn,mark*} setlocal filetype=markdown
  577. autocmd BufNewFile,BufRead *.gradle setlocal filetype=groovy
  578. autocmd BufNewFile,BufRead */Classes/*.{cpp,h,hpp} setlocal tags+=$HOME/ctags/cocos2dx.tags
  579. autocmd FileType php setlocal noexpandtab wrap tabstop=4 shiftwidth=4
  580. autocmd FileType java setlocal noexpandtab wrap tabstop=4 shiftwidth=4
  581. autocmd FileType ruby setlocal tags+=$HOME/ctags/ruby.tags
  582. autocmd FileType c setlocal tags+=$HOME/ctags/c.tags
  583. autocmd FileType cpp setlocal path=.,C:/msys64/mingw64/include,C:/cocos2d-x-3.6/cocos
  584. autocmd BufNewFile Gemfile Template Gemfile
  585. autocmd User DirvishEnter let b:dirvish.showhidden = 1
  586. augroup END
  587. let g:netrw_nogx = 1
  588. nmap gx <Plug>(openbrowser-smart-search)
  589. vmap gx <Plug>(openbrowser-smart-search)
  590. let g:quickrun_config = {}
  591. let g:quickrun_config = {
  592. \ '_' : {
  593. \ 'hook/close_unite_quickfix/enable_hook_loaded' : 1,
  594. \ 'hook/unite_quickfix/enable_failure' : 1,
  595. \ 'hook/close_quickfix/enable_exit' : 1,
  596. \ 'hook/close_buffer/enable_failure' : 1,
  597. \ 'hook/close_buffer/enable_empty_data' : 1,
  598. \ 'outputter' : 'multi:buffer:quickfix',
  599. \ 'hook/u_nya_/enable' : 1,
  600. \ 'hook/sweep/enable' : 0,
  601. \ 'outputter/buffer/split' : ':botright 15sp',
  602. \ 'outputter/buffer/running_mark' : 'バン(∩`・ω・)バンバンバンバン゙ン',
  603. \ 'runner' : 'vimproc',
  604. \ 'runner/vimproc/updatetime' : 40,
  605. \ 'runner/vimproc/sleep' : 0,
  606. \ }
  607. \ }
  608. let g:quickrun_config['markdown'] = {
  609. \ 'outputter': 'browser'
  610. \}
  611. let g:quickrun_config['ruby'] = {
  612. \ 'command': 'ruby',
  613. \ 'exec': '/usr/bin/env ruby %s',
  614. \ 'tempfile': '{tempname()}.rb'
  615. \}
  616. let g:quickrun_config['clojure/neoclojure'] = {
  617. \ 'type' : 'clojure/neoclojure',
  618. \ 'runner' : 'neoclojure',
  619. \ 'command' : 'dummy',
  620. \ 'tempfile' : '%{tempname()}.clj'
  621. \}
  622. let g:quickrun_config['cpp/gcc']= {
  623. \ 'cmdopt': '-std=c++1y -Wall'
  624. \ }
  625. let g:quickrun_config["cpp/msvc2013"] = {
  626. \ "command" : "cl",
  627. \ "exec": ["%c %o %s /nologo /link 'Siv3D.lib' 'kernel32.lib' " .
  628. \ "'user32.lib' 'gdi32.lib' 'winspool.lib' 'comdlg32.lib'" .
  629. \ "'advapi32.lib' 'shell32.lib' 'ole32.lib' 'oleaut32.lib'" .
  630. \ "'uuid.lib' 'odbc32.lib' 'odbccp32.lib'", "%s:p:r.exe %a"],
  631. \ "cmdopt" : "/EHsc",
  632. \ "hook/output_encode/encoding": "sjis",
  633. \ "hook/vcvarsall/enable" : 1,
  634. \ "hook/vcvarsall/bat" : shellescape($VS120COMNTOOLS . 'vsvars32.bat')
  635. \ }
  636. call watchdogs#setup(g:quickrun_config)
  637. let g:lingr_vim_user = 'raa0121'
  638. let g:J6uil_display_offline = 0
  639. let g:J6uil_display_online = 0
  640. let g:J6uil_echo_presence = 1
  641. let g:J6uil_display_icon = 0
  642. let g:J6uil_display_interval = 0
  643. let g:J6uil_updatetime = 1000
  644. let g:calendar_google_calendar = 1
  645. let g:calendar_google_task = 1
  646. let g:marching_clang_command_option="-std=c++1y"
  647. let g:marching_enable_neocomplete = 1
  648. if has('win32')
  649. let g:marching_clang_command = 'C:/msys64/mingw64/bin/clang'
  650. let g:marching_include_paths = ['C:/msys64/mingw64/include/c++/4.9.2/',
  651. \ 'C:/cocos2d-x-3.6/cocos/']
  652. let g:snowdrop#libclang_path = 'C:/msys64/mingw64/bin'
  653. else
  654. let g:marching_clang_command = '/usr/bin/clang'
  655. let g:marching_include_paths = ['/usr/include/c++/4.8.2/']
  656. let g:snowdrop#libclang_path='/usr/lib'
  657. end
  658. let g:conoline_auto_enable = 1
  659. call unite#filters#matcher_default#use(['matcher_fuzzy'])
  660. let g:unite_enable_start_insert = 1
  661. let g:unite_source_directory_mru_long_limit = 3000
  662. let g:unite_source_file_mru_filename_format = ''
  663. let g:unite_source_file_mru_long_limit = 3000
  664. let g:unite_source_history_yank_enable = 1
  665. let g:unite_split_rule = 'botright'
  666. let g:unite_winheight = 15
  667. call textobj#user#plugin('datetime', {
  668. \ 'date': {
  669. \ 'pattern': '\<\d\d\d\d-\d\d-\d\d\>',
  670. \ 'select': ['ad', 'id'],
  671. \ },
  672. \ 'time': {
  673. \ 'pattern': '\<\d\d:\d\d:\d\d\>',
  674. \ 'select': ['at', 'it'],
  675. \ },
  676. \ })
  677. let g:php_cs_fixer_level = "all"
  678. let g:php_cs_fixer_config = "default"
  679. let g:php_cs_fixer_php_path = "php"
  680. let g:php_cs_fixer_enable_default_mapping = 1
  681. let g:php_cs_fixer_dry_run = 0
  682. let g:php_cs_fixer_verbose = 0
  683. set diffexpr=unified_diff#diffexpr()
  684. " configure with the followings (default values are shown below)
  685. let unified_diff#executable = 'git'
  686. let unified_diff#arguments = [
  687. \ 'diff', '--no-index', '--no-color', '--no-ext-diff', '--unified=0',
  688. \ ]
  689. let unified_diff#iwhite_arguments = [
  690. \ '--ignore--all-space',
  691. \ ]
  692. augroup plugin-lingr-vim
  693. autocmd!
  694. autocmd FileType lingr-messages nmap <silent> <buffer> t <Plug>(lingr-messages-show-say-buffer)
  695. autocmd FileType lingr-say let &syntax='clojure'
  696. augroup END
  697. function! s:SID_PREFIX()
  698. return matchstr(expand('<sfile>'), '<SNR>\d\+_')
  699. endfunction
  700. set titlelen=100
  701. set guioptions-=e
  702. autocmd vimrc BufEnter * let &titlestring = '%{' . s:SID_PREFIX() . 'titlestring()}'
  703. autocmd vimrc User plugin-lingr-unread let &titlestring = '%{' . s:SID_PREFIX() . 'titlestring()}'
  704. if !has('gui_running')
  705. set t_Co=256
  706. endif
  707. if exists('$TMUX') || exists('$WINDOW')
  708. set t_ts=k
  709. set t_fs=\
  710. endif
  711. function! s:titlestring()
  712. if &filetype =~ '^lingr'
  713. let &titlestring = 'lingr: ' . lingr#unread_count()
  714. else
  715. let &titlestring = bufname('')
  716. endif
  717. endfunction
  718. " tabline
  719. set showtabline=2 " always show tabline
  720. let g:lightline = {
  721. \ 'colorscheme': 'wombat',
  722. \ 'active': {
  723. \ 'left': [
  724. \ ['mode', 'paste'],
  725. \ ['fugitive', 'gitgutter', 'filename'],
  726. \ ],
  727. \ 'right': [
  728. \ ['lineinfo', 'syntastic'],
  729. \ ['percent'],
  730. \ ['charcode', 'fileformat', 'fileencoding', 'filetype'],
  731. \ ]
  732. \ },
  733. \ 'component_function': {
  734. \ 'modified': 'MyModified',
  735. \ 'readonly': 'MyReadonly',
  736. \ 'fugitive': 'MyFugitive',
  737. \ 'filename': 'MyFilename',
  738. \ 'fileformat': 'MyFileformat',
  739. \ 'filetype': 'MyFiletype',
  740. \ 'fileencoding': 'MyFileencoding',
  741. \ 'mode': 'MyMode',
  742. \ 'syntastic': 'SyntasticStatuslineFlag',
  743. \ 'charcode': 'MyCharCode',
  744. \ 'gitgutter': 'MyGitGutter',
  745. \ },
  746. \ 'separator': { 'left': "\u2b80", 'right': "\u2b82" },
  747. \ 'subseparator': { 'left': "\u2b81", 'right': "\u2b83" }
  748. \ }
  749. function! MyModified()
  750. return &ft =~ 'help\|vimfiler\|gundo' ? '' : &modified ? '+' : &modifiable ? '' : '-'
  751. endfunction
  752. function! MyReadonly()
  753. return &ft !~? 'help\|vimfiler\|gundo' && &ro ? '\u2b64' : ''
  754. endfunction
  755. function! MyFilename()
  756. return ('' != MyReadonly() ? MyReadonly() . ' ' : '') .
  757. \ (&ft == 'vimfiler' ? vimfiler#get_status_string() :
  758. \ &ft == 'unite' ? unite#get_status_string() :
  759. \ &ft == 'vimshell' ? substitute(b:vimshell.current_dir,expand('~'),'~','') :
  760. \ '' != expand('%:t') ? expand('%:t') : '[No Name]') .
  761. \ ('' != MyModified() ? ' ' . MyModified() : '')
  762. endfunction
  763. function! MyFugitive()
  764. try
  765. if &ft !~? 'vimfiler\|gundo' && exists('*fugitive#head')
  766. let _ = fugitive#head()
  767. return strlen(_) ? '⭠ '._ : ''
  768. endif
  769. catch
  770. endtry
  771. return ''
  772. endfunction
  773. function! MyFileformat()
  774. return winwidth('.') > 70 ? &fileformat : ''
  775. endfunction
  776. function! MyFiletype()
  777. return winwidth('.') > 70 ? (strlen(&filetype) ? &filetype : 'no ft') : ''
  778. endfunction
  779. function! MyFileencoding()
  780. return winwidth('.') > 70 ? (strlen(&fenc) ? &fenc : &enc) : ''
  781. endfunction
  782. function! MyMode()
  783. return winwidth('.') > 60 ? lightline#mode() : ''
  784. endfunction
  785. function! MyGitGutter()
  786. if ! exists('*GitGutterGetHunkSummary')
  787. \ || ! get(g:, 'gitgutter_enabled', 0)
  788. \ || winwidth('.') <= 90
  789. return ''
  790. endif
  791. let symbols = [
  792. \ g:gitgutter_sign_added . ' ',
  793. \ g:gitgutter_sign_modified . ' ',
  794. \ g:gitgutter_sign_removed . ' '
  795. \ ]
  796. let hunks = GitGutterGetHunkSummary()
  797. let ret = []
  798. for i in [0, 1, 2]
  799. if hunks[i] > 0
  800. call add(ret, symbols[i] . hunks[i])
  801. endif
  802. endfor
  803. return join(ret, ' ')
  804. endfunction
  805. " https://github.com/Lokaltog/vim-powerline/blob/develop/autoload/Powerline/Functions.vim
  806. function! MyCharCode()
  807. if winwidth('.') <= 70
  808. return ''
  809. endif
  810. " Get the output of :ascii
  811. redir => ascii
  812. silent! ascii
  813. redir END
  814. if match(ascii, 'NUL') != -1
  815. return 'NUL'
  816. endif
  817. " Zero pad hex values
  818. let nrformat = '0x%02x'
  819. let encoding = (&fenc == '' ? &enc : &fenc)
  820. if encoding == 'utf-8'
  821. " Zero pad with 4 zeroes in unicode files
  822. let nrformat = '0x%04x'
  823. endif
  824. " Get the character and the numeric value from the return value of :ascii
  825. " This matches the two first pieces of the return value, e.g.
  826. " "<F> 70" => char: 'F', nr: '70'
  827. let [str, char, nr; rest] = matchlist(ascii, '\v\<(.{-1,})\>\s*([0-9]+)')
  828. " Format the numeric value
  829. let nr = printf(nrformat, nr)
  830. return "'". char ."' ". nr
  831. endfunction
  832. let &tabline = '%!' . s:SID_PREFIX() . 'tabline()'
  833. function! s:tabline()
  834. " show each tab
  835. let s = ''
  836. for i in range(1, tabpagenr('$'))
  837. let list = tabpagebuflist(i)
  838. let nr = tabpagewinnr(i)
  839. let current_tabnr = tabpagenr()
  840. "let title = bufname('')
  841. if i == current_tabnr
  842. let title = fnamemodify(getcwd(), ':t') . '/'
  843. "let title = bufname('')
  844. else
  845. let title = fnamemodify(gettabvar(i, 'cwd'), ':t') . '/'
  846. endif
  847. let title = empty(title) ? '[No Name]' : title
  848. let s .= i == current_tabnr ? '%#TabLineSel#' : '%#TabLine#'
  849. let s .= '%' . i . 'T[' . i . '] ' . title
  850. let s .= ' '
  851. endfor
  852. " show lingr unread count
  853. let lingr_unread = ""
  854. if exists('*lingr#unread_count')
  855. let lingr_unread_count = lingr#unread_count()
  856. if lingr_unread_count > 0
  857. let lingr_unread = "%#ErrorMsg#(" . lingr_unread_count . ")"
  858. elseif lingr_unread_count == 0
  859. let lingr_unread = "()"
  860. endif
  861. endif
  862. " build tabline
  863. let s .= '%#TabLineFill#%T%=%<[' . getcwd() . ']' . lingr_unread
  864. return s
  865. endfunction
  866. augroup vimrc-scratch-buffer
  867. autocmd!
  868. " Make a scratch buffer when unnamed buffer.
  869. autocmd BufEnter * call s:scratch_buffer()
  870. autocmd FileType qfreplace autocmd! vimrc-scratch * <buffer>
  871. function! s:scratch_buffer()
  872. if exists('b:scratch_buffer') || bufname('%') !=# '' || &l:buftype !=# ''
  873. return
  874. endif
  875. let b:scratch_buffer = 1
  876. setlocal buftype=nofile nobuflisted noswapfile bufhidden=hide
  877. augroup vimrc-scratch
  878. autocmd! * <buffer>
  879. autocmd BufWriteCmd <buffer> call s:scratch_on_BufWriteCmd()
  880. augroup END
  881. endfunction
  882. function! s:scratch_on_BufWriteCmd()
  883. silent! setl buftype< buflisted< swapfile< bufhidden< nomodified
  884. autocmd! vimrc-scratch * <buffer>
  885. if bufname('%') ==# '' && exists('b:scratch_buffer')
  886. execute 'saveas' . (v:cmdbang ? '!' : '') ' <afile>'
  887. filetype detect
  888. endif
  889. unlet! b:scratch_buffer
  890. endfunction
  891. augroup END
  892. 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
  893. let g:github_user = 'raa0121'
  894. let g:github#user = 'raa0121'