.vimrc 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965
  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 'leafgarland/typescript-vim'
  258. call neobundle#config('typescript-vim', {
  259. \ 'lazy' : 1,
  260. \ 'autoload' : { 'filetypes' : 'typescript'}
  261. \ })
  262. NeoBundle 'machakann/vim-colorscheme-imas'
  263. NeoBundle 'mattn/benchvimrc-vim'
  264. call neobundle#config('benchvimrc-vim', {
  265. \ 'lazy' : 1,
  266. \ 'autoload' : { 'commands' : 'BenchVimrc' }
  267. \ })
  268. NeoBundle 'mattn/flappyvird-vim'
  269. call neobundle#config('flappyvird-vim', {
  270. \ 'lazy' : 1,
  271. \ 'autoload' : { 'commands' : 'FlappyVird' }
  272. \ })
  273. NeoBundle 'mattn/gist-vim'
  274. call neobundle#config('gist-vim', {
  275. \ 'lazy' : 1,
  276. \ 'autoload' : { 'commands' : 'Gist' }
  277. \ })
  278. NeoBundle 'mattn/libcallex-vim'
  279. NeoBundle 'mattn/sonictemplate-vim'
  280. call neobundle#config('sonictemplate-vim', {
  281. \ 'lazy' : 1,
  282. \ 'autoload' : { 'commands' : 'Template' }
  283. \ })
  284. NeoBundle 'mattn/unite-rhythmbox'
  285. call neobundle#config('unite-rhythmbox', {
  286. \ 'lazy' : 1,
  287. \ 'autoload' : { 'unite_sources' : 'rhythmbox' },
  288. \ 'depends' : 'Shougo/unite.vim'
  289. \ })
  290. NeoBundle 'mattn/webapi-vim'
  291. NeoBundle 'miyakogi/conoline.vim'
  292. NeoBundle 'osyo-manga/quickrun-hook-u-nya-'
  293. call neobundle#config('quickrun-hook-u-nya-', {
  294. \ 'depends' : 'thinca/vim-quickrun'
  295. \ })
  296. NeoBundle 'osyo-manga/quickrun-hook-vcvarsall'
  297. NeoBundle 'osyo-manga/shabadou.vim'
  298. NeoBundle 'osyo-manga/unite-filetype'
  299. call neobundle#config('unite-filetype', {
  300. \ 'lazy' : 1,
  301. \ 'autoload' : { 'unite_sources' : ['filetype', 'filetype/new']},
  302. \ 'depends' : ['Shougo/unite.vim']
  303. \ })
  304. NeoBundle 'osyo-manga/unite-highlight'
  305. call neobundle#config('unite-highlight', {
  306. \ 'lazy' : 1,
  307. \ 'autoload' : { 'unite_sources' : ['highlight']},
  308. \ 'depends' : ['Shougo/unite.vim']
  309. \ })
  310. NeoBundle 'osyo-manga/unite-quickfix'
  311. call neobundle#config('unite-quickfix', {
  312. \ 'lazy' : 1,
  313. \ 'autoload' : { 'unite_sources' : ['quickfix', 'location_list']},
  314. \ 'depends' : 'Shougo/unite.vim'
  315. \ })
  316. NeoBundle 'osyo-manga/vim-marching'
  317. call neobundle#config('vim-marching', {
  318. \ 'lazy' : 1,
  319. \ 'autoload' : { 'filetypes' : ['c', 'cpp'] },
  320. \ 'depends' : ['Shougo/vimproc.vim', 'osyo-manga/vim-reunions']
  321. \ })
  322. NeoBundle 'osyo-manga/vim-monster'
  323. call neobundle#config('vim-monster', {
  324. \ 'lazy' : 1,
  325. \ 'autoload' : { 'filetypes' : 'ruby' }
  326. \ })
  327. NeoBundle 'osyo-manga/vim-over'
  328. NeoBundle 'osyo-manga/vim-reunions'
  329. NeoBundle 'osyo-manga/vim-snowdrop'
  330. call neobundle#config('vim-snowdrop', {
  331. \ 'lazy' : 1,
  332. \ 'autoload' : { 'filetypes' : 'cpp' }
  333. \ })
  334. NeoBundle 'osyo-manga/vim-watchdogs'
  335. NeoBundle 'Quramy/tsuquyomi'
  336. call neobundle#config('tsuquyomi', {
  337. \ 'lazy' : 1,
  338. \ 'autoload' : { 'filetypes' : 'typescript'}
  339. \ })
  340. NeoBundle 'raa0121/vim-ulilith'
  341. NeoBundle 'rbtnn/colorscheme-gochiusa.vim'
  342. NeoBundle 'rbtnn/game_engine.vim'
  343. NeoBundle 'rbtnn/vimconsole.vim'
  344. call neobundle#config('vimconsole.vim', {
  345. \ 'lazy' : 1,
  346. \ 'depends' : 'thinca/vim-prettyprint',
  347. \ 'autoload' : { 'commands' : 'VimConsoleOpen' }
  348. \ })
  349. NeoBundle 'rhysd/vim-crystal'
  350. call neobundle#config('vim-crystal', {
  351. \ 'lazy' : 1,
  352. \ 'autoload' : { 'filetypes' : 'crystal' }
  353. \ })
  354. NeoBundle 'rust-lang/rust.vim'
  355. call neobundle#config('rust.vim', {
  356. \ 'lazy' : 1,
  357. \ 'autoload' : { 'filetypes' : 'rust' }
  358. \ })
  359. NeoBundle 'ryutorion/vim-itunes'
  360. NeoBundle 'slim-template/vim-slim'
  361. NeoBundle 'stephpy/vim-php-cs-fixer'
  362. call neobundle#config('vim-php-cs-fixer', {
  363. \ 'lazy' : 1,
  364. \ 'autoload' : { 'filetypes' : 'php' }
  365. \ })
  366. NeoBundle 'supermomonga/thingspast.vim'
  367. "call neobundle#config('thingspast.vim', {
  368. " \ 'build' : { 'unix' : 'bundle install' }
  369. " \ })
  370. NeoBundle 'thinca/vim-ft-clojure'
  371. call neobundle#config('vim-ft-clojure', {
  372. \ 'lazy' : 1,
  373. \ 'autoload' : { 'filetypes' : 'clojure' }
  374. \ })
  375. NeoBundle 'thinca/vim-github'
  376. call neobundle#config('vim-github', {
  377. \ 'lazy' : 1,
  378. \ 'autoload' : { 'commands' : 'Github' }
  379. \ })
  380. NeoBundle 'thinca/vim-prettyprint'
  381. call neobundle#config('vim-prettyprint', {
  382. \ 'lazy' : 1,
  383. \ 'autoload' : { 'commands' : ['PP', 'PrettyPrint']}
  384. \ })
  385. "NeoBundle 'thinca/vim-quickrun'
  386. NeoBundle 'ujihisa/vim-quickrun', 'concproc'
  387. call neobundle#config('vim-quickrun', {
  388. \ 'lazy' : 1,
  389. \ 'autoload' : {
  390. \ 'mappings' : [
  391. \ ['nxo', '<Plug>(quickrun)']],
  392. \ 'commands' : 'QuickRun',
  393. \ },
  394. \ })
  395. NeoBundle 'thinca/vim-ref'
  396. call neobundle#config('vim-ref', {
  397. \ 'lazy' : 1,
  398. \ 'autoload' : { 'commands' : ['Ref', 'RefHistory'],
  399. \ 'unite_sources' : ['ref/erlang', 'ref/man',
  400. \ 'ref/pydoc', 'ref/redis',
  401. \ 'ref/clojure',
  402. \ 'ref/refe', 'ref/webdict']}
  403. \ })
  404. NeoBundle 'thinca/vim-singleton'
  405. NeoBundle 'thinca/vim-splash'
  406. NeoBundle 'thinca/vim-textobj-function-javascript'
  407. call neobundle#config('vim-textobj-function-javascript', {
  408. \ 'depends' : ['kana/vim-textobj-function'],
  409. \ 'lazy' : 1,
  410. \ 'autoload' : { 'filetypes' : 'javascript' }
  411. \ })
  412. NeoBundle 'thinca/vim-threes'
  413. call neobundle#config('vim-threes', {
  414. \ 'lazy' : 1,
  415. \ 'autoload' : { 'commands' : 'ThreesStart' }
  416. \ })
  417. NeoBundle 'tpope/vim-cucumber'
  418. call neobundle#config('vim-cucumber', {
  419. \ 'lazy' : 1,
  420. \ 'autoload' : { 'filetypes' : 'cucumber' }
  421. \ })
  422. NeoBundle 'tsukkee/lingr-vim'
  423. call neobundle#config('lingr-vim', {
  424. \ 'lazy' : 1,
  425. \ 'autoload' : { 'commands' : 'LingrLaunch' }
  426. \ })
  427. NeoBundle 'tyru/kirikiri.vim'
  428. call neobundle#config('lingr-vim', {
  429. \ 'lazy' : 1,
  430. \ 'autoload' : { 'filetypes' : 'kscript' }
  431. \ })
  432. NeoBundle 'tyru/open-browser.vim'
  433. call neobundle#config('open-browser.vim',{
  434. \ 'lazy' : 1,
  435. \ 'autoload' : {
  436. \ 'mappings' : '<Plug>(open-browser-wwwsearch)',
  437. \ }
  438. \ })
  439. NeoBundle 'ujihisa/neco-ghc'
  440. call neobundle#config('neco-ghc', {
  441. \ 'lazy' : 1,
  442. \ 'autoload' : { 'filetypes' : 'haskell' }
  443. \ })
  444. if executable('look')
  445. NeoBundle 'ujihisa/neco-look'
  446. endif
  447. NeoBundle 'ujihisa/neoclojure.vim'
  448. call neobundle#config('neco-ghc', {
  449. \ 'lazy' : 1,
  450. \ 'autoload' : { 'filetypes' : 'clojure',
  451. \ 'unite_sources' : ['ref/neoclojure'] }
  452. \ })
  453. NeoBundle 'ujihisa/unite-colorscheme'
  454. call neobundle#config('unite-colorscheme', {
  455. \ 'lazy' : 1,
  456. \ 'autoload' : { 'unite_sources' : ['colorscheme'] }
  457. \ })
  458. NeoBundle 'ujihisa/vimshell-ssh'
  459. call neobundle#config('vimshell-ssh',{
  460. \ 'lazy' : 1,
  461. \ 'depends' : 'Shougo/vimshell',
  462. \ 'autoload' : { 'filetypes' : 'vimshell'}
  463. \ })
  464. NeoBundle 'vim-jp/cpp-vim', {
  465. \ 'lazy' : 1,
  466. \ 'autoload' : {'filetypes' : 'cpp'}
  467. \ }
  468. NeoBundle 'vim-jp/vimdoc-ja'
  469. NeoBundle 'vim-jp/vital.vim'
  470. call neobundle#config('vital.vim', {
  471. \ 'lazy' : 1,
  472. \ 'autoload' : {
  473. \ 'commands' : ['Vitalize'],
  474. \ 'functions' : ['vital#of', 'vital']
  475. \ }
  476. \ })
  477. NeoBundle 'vim-scripts/AnsiEsc.vim'
  478. NeoBundle 'vim-scripts/sudo.vim'
  479. NeoBundle 'yoppi/fluentd.vim'
  480. call neobundle#config('fluentd.vim',{
  481. \ 'lazy' : 1,
  482. \ 'autoload' : { 'filetypes' : 'fluentd'}
  483. \ })
  484. if executable('w3m')
  485. NeoBundle 'yuratomo/w3m.vim'
  486. call neobundle#config('w3m.vim',{
  487. \ 'lazy' : 1,
  488. \ 'autoload' : { 'commands' : ['W3m', 'W3mTab']}
  489. \ })
  490. endif
  491. call neobundle#end()
  492. filetype plugin indent on
  493. if has('clientserver')
  494. call singleton#enable()
  495. end
  496. set ww+=h,l,>,<,[,]
  497. set mouse=a
  498. set ttymouse=xterm2
  499. set clipboard=unnamedplus
  500. " ,is: シェルを起動
  501. nnoremap <silent> ,is :VimShell<CR>
  502. " ,ipy: pythonを非同期で起動
  503. nnoremap <silent> ,ipy :VimShellInteractive python<CR>
  504. " ,irb: irbを非同期で起動
  505. nnoremap <silent> ,irb :VimShellInteractive irb<CR>
  506. " ,ss: 非同期で開いたインタプリタに現在の行を評価させる
  507. vmap <silent> ,ss :VimShellSendString<CR>
  508. " 選択中に,ss: 非同期で開いたインタプリタに選択行を評価させる
  509. nnoremap <silent> ,ss <S-v>:VimShellSendString<CR>
  510. " ,vs: vimshell
  511. nnoremap <silent> ,vs :tabnew +VimShell<CR>
  512. " ,vr: .vimrc
  513. nnoremap <silent> ,vr :tabnew ~/.vimrc<CR>:lcd<CR>
  514. nnoremap <silent> ,so :so ~/.vimrc<CR>
  515. nnoremap <silent> ,nu :tabnew +Unite\ neobundle/update<CR>
  516. nnoremap <silent> ,ll :tabnew +LingrLaunch<CR>
  517. nnoremap <Esc><Esc> :nohlsearch<CR><ESC>
  518. nnoremap <silent> ,ts :<C-u>tab stj <C-R>=expand('<cword>')<CR><CR>
  519. map / <Plug>(incsearch-forward)
  520. map ? <Plug>(incsearch-backward)
  521. map g/ <Plug>(incsearch-stay)
  522. if neobundle#is_installed('neocomplcache')
  523. let g:neocomplcache_enable_at_startup = 1
  524. let g:neocomplcache_enable_smart_case = 1
  525. let g:neocomplcache_enable_camel_case_completion = 1
  526. let g:neocomplcache_enable_underbar_completion = 1
  527. let g:neocomplcache_min_syntax_length = 3
  528. let g:neocomplcache_lock_buffer_name_pattern = '\*ku\*'
  529. let g:neocomplcache_keyword_patterns = get(g:, 'neocomplecache_keyword_patterns', {})
  530. let g:neocomplcache_keyword_patterns['default'] = '\h\w*'
  531. endif
  532. if neobundle#is_installed('neocomplete.vim')
  533. let g:neocomplete#enable_at_startup = 1
  534. let g:neocomplete#enable_smart_case = 1
  535. let g:neocomplete#enable_camel_case_completion = 1
  536. let g:neocomplete#enable_underbar_completion = 1
  537. let g:neocomplete#min_syntax_length = 3
  538. let g:neocomplete#lock_buffer_name_pattern = '\*ku\*'
  539. let g:neocomplete#keyword_patterns = get(g:, 'neocomplete#keyword_patterns', {})
  540. let g:neocomplete#keyword_patterns['default'] = '\h\w*'
  541. let g:neocomplete#force_omni_input_patterns = get(g:, 'neocomplete#force_omni_input_patterns', {})
  542. let g:neocomplete#sources#omni#input_patterns = get(g:, 'neocomplete#sources#omni#input_patterns', {})
  543. let g:neocomplete#text_mode_filetypes = {'tex': 1, 'plaintex': 1}
  544. let g:neocomplete#force_omni_input_patterns.cpp =
  545. \ '[^.[:digit:] *\t]\%(\.\|->\)\w*\|\h\w*::\w*'
  546. let g:neocomplete#force_omni_input_patterns.ruby = '[^. *\t]\.\|\h\w*::'
  547. let g:neocomplete#sources#omni#input_patterns.cs = '[^.]\.\%(\u\{2,}\)\?'
  548. endif
  549. "let g:vimfiler_as_default_explorer = 1
  550. "let g:vimfiler_safe_mode_by_default = 0
  551. "let g:neocomplcache#sources#rsense#home_directory = '/opt/rsense-0.3/'
  552. let g:neocomplcache_text_mode_filetypes = {
  553. \ 'tex': 1,
  554. \ 'plaintex': 1,
  555. \}
  556. let g:monster#completion#rcodetools#backend = "async_rct_complete"
  557. let g:neosnippet#snippets_directory = '~/.vim/snippet,~/.bundle/vim-snippets/snippets'
  558. "tabで補完候補の選択を行う
  559. imap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
  560. imap <expr><S-TAB> pumvisible() ? "\<C-u>" : "\<S-TAB>"
  561. imap <expr><CR> neosnippet#expandable_or_jumpable() ? "\<Plug>(neosnippet_expand_or_jump)" : "\<CR>"
  562. smap <expr><TAB> neosnippet#expandable_or_jumpable() ?
  563. \ "\<Plug>(neosnippet_expand_or_jump)"
  564. \: "\<TAB>"
  565. augroup vimrc
  566. autocmd!
  567. autocmd FileType css setlocal omnifunc=csscomplete#CompleteCSS
  568. autocmd FileType html,markdown setlocal omnifunc=htmlcomplete#CompleteTags
  569. autocmd FileType javascript setlocal omnifunc=javascriptcomplete#CompleteJS
  570. autocmd FileType python setlocal omnifunc=pythoncomplete#Complete
  571. autocmd FileType xml setlocal omnifunc=xmlcomplete#CompleteTags
  572. autocmd FileType cs setlocal omnifunc=OmniSharp#Complete
  573. autocmd FileType clojure setlocal omnifunc=neoclojure#complete#omni
  574. autocmd FileType quickrun AnsiEsc
  575. autocmd BufNewFile,BufRead *.{md,mdwn,mkd,mkdn,mark*} setlocal filetype=markdown
  576. autocmd BufNewFile,BufRead *.gradle setlocal filetype=groovy
  577. autocmd BufNewFile,BufRead */Classes/*.{cpp,h,hpp} setlocal tags+=$HOME/ctags/cocos2dx.tags
  578. autocmd FileType php setlocal noexpandtab wrap tabstop=4 shiftwidth=4
  579. autocmd FileType java setlocal noexpandtab wrap tabstop=4 shiftwidth=4
  580. autocmd FileType ruby setlocal tags+=$HOME/ctags/ruby.tags
  581. autocmd FileType c setlocal tags+=$HOME/ctags/c.tags
  582. autocmd FileType cpp setlocal path=.,C:/msys64/mingw64/include,C:/cocos2d-x-3.6/cocos
  583. autocmd BufNewFile Gemfile Template Gemfile
  584. autocmd User DirvishEnter let b:dirvish.showhidden = 1
  585. augroup END
  586. let g:netrw_nogx = 1
  587. nmap gx <Plug>(openbrowser-smart-search)
  588. vmap gx <Plug>(openbrowser-smart-search)
  589. let g:quickrun_config = {}
  590. let g:quickrun_config = {
  591. \ '_' : {
  592. \ 'hook/close_unite_quickfix/enable_hook_loaded' : 1,
  593. \ 'hook/unite_quickfix/enable_failure' : 1,
  594. \ 'hook/close_quickfix/enable_exit' : 1,
  595. \ 'hook/close_buffer/enable_failure' : 1,
  596. \ 'hook/close_buffer/enable_empty_data' : 1,
  597. \ 'outputter' : 'multi:buffer:quickfix',
  598. \ 'hook/u_nya_/enable' : 1,
  599. \ 'hook/sweep/enable' : 0,
  600. \ 'outputter/buffer/split' : ':botright 15sp',
  601. \ 'outputter/buffer/running_mark' : 'バン(∩`・ω・)バンバンバンバン゙ン',
  602. \ 'runner' : 'vimproc',
  603. \ 'runner/vimproc/updatetime' : 40,
  604. \ 'runner/vimproc/sleep' : 0,
  605. \ }
  606. \ }
  607. let g:quickrun_config['markdown'] = {
  608. \ 'outputter': 'browser'
  609. \}
  610. let g:quickrun_config['ruby'] = {
  611. \ 'command': 'ruby',
  612. \ 'exec': '/usr/bin/env ruby %s',
  613. \ 'tempfile': '{tempname()}.rb'
  614. \}
  615. let g:quickrun_config['clojure/neoclojure'] = {
  616. \ 'type' : 'clojure/neoclojure',
  617. \ 'runner' : 'neoclojure',
  618. \ 'command' : 'dummy',
  619. \ 'tempfile' : '%{tempname()}.clj'
  620. \}
  621. let g:quickrun_config['cpp/gcc']= {
  622. \ 'cmdopt': '-std=c++1y -Wall'
  623. \ }
  624. let g:quickrun_config["cpp/msvc2013"] = {
  625. \ "command" : "cl",
  626. \ "exec": ["%c %o %s /nologo /link 'Siv3D.lib' 'kernel32.lib' " .
  627. \ "'user32.lib' 'gdi32.lib' 'winspool.lib' 'comdlg32.lib'" .
  628. \ "'advapi32.lib' 'shell32.lib' 'ole32.lib' 'oleaut32.lib'" .
  629. \ "'uuid.lib' 'odbc32.lib' 'odbccp32.lib'", "%s:p:r.exe %a"],
  630. \ "cmdopt" : "/EHsc",
  631. \ "hook/output_encode/encoding": "sjis",
  632. \ "hook/vcvarsall/enable" : 1,
  633. \ "hook/vcvarsall/bat" : shellescape($VS120COMNTOOLS . 'vsvars32.bat')
  634. \ }
  635. call watchdogs#setup(g:quickrun_config)
  636. let g:lingr_vim_user = 'raa0121'
  637. let g:J6uil_display_offline = 0
  638. let g:J6uil_display_online = 0
  639. let g:J6uil_echo_presence = 1
  640. let g:J6uil_display_icon = 0
  641. let g:J6uil_display_interval = 0
  642. let g:J6uil_updatetime = 1000
  643. let g:calendar_google_calendar = 1
  644. let g:calendar_google_task = 1
  645. let g:marching_clang_command_option="-std=c++1y"
  646. let g:marching_enable_neocomplete = 1
  647. if has('win32')
  648. let g:marching_clang_command = 'C:/msys64/mingw64/bin/clang'
  649. let g:marching_include_paths = ['C:/msys64/mingw64/include/c++/4.9.2/',
  650. \ 'C:/cocos2d-x-3.6/cocos/']
  651. let g:snowdrop#libclang_path = 'C:/msys64/mingw64/bin'
  652. else
  653. let g:marching_clang_command = '/usr/bin/clang'
  654. let g:marching_include_paths = ['/usr/include/c++/4.8.2/']
  655. let g:snowdrop#libclang_path='/usr/lib'
  656. end
  657. let g:conoline_auto_enable = 1
  658. call unite#filters#matcher_default#use(['matcher_fuzzy'])
  659. let g:unite_enable_start_insert = 1
  660. let g:unite_source_directory_mru_long_limit = 3000
  661. let g:unite_source_file_mru_filename_format = ''
  662. let g:unite_source_file_mru_long_limit = 3000
  663. let g:unite_source_history_yank_enable = 1
  664. let g:unite_split_rule = 'botright'
  665. let g:unite_winheight = 15
  666. call textobj#user#plugin('datetime', {
  667. \ 'date': {
  668. \ 'pattern': '\<\d\d\d\d-\d\d-\d\d\>',
  669. \ 'select': ['ad', 'id'],
  670. \ },
  671. \ 'time': {
  672. \ 'pattern': '\<\d\d:\d\d:\d\d\>',
  673. \ 'select': ['at', 'it'],
  674. \ },
  675. \ })
  676. let g:php_cs_fixer_level = "all"
  677. let g:php_cs_fixer_config = "default"
  678. let g:php_cs_fixer_php_path = "php"
  679. let g:php_cs_fixer_enable_default_mapping = 1
  680. let g:php_cs_fixer_dry_run = 0
  681. let g:php_cs_fixer_verbose = 0
  682. augroup plugin-lingr-vim
  683. autocmd!
  684. autocmd FileType lingr-messages nmap <silent> <buffer> t <Plug>(lingr-messages-show-say-buffer)
  685. autocmd FileType lingr-say let &syntax='clojure'
  686. augroup END
  687. function! s:SID_PREFIX()
  688. return matchstr(expand('<sfile>'), '<SNR>\d\+_')
  689. endfunction
  690. set titlelen=100
  691. set guioptions-=e
  692. autocmd vimrc BufEnter * let &titlestring = '%{' . s:SID_PREFIX() . 'titlestring()}'
  693. autocmd vimrc User plugin-lingr-unread let &titlestring = '%{' . s:SID_PREFIX() . 'titlestring()}'
  694. if !has('gui_running')
  695. set t_Co=256
  696. endif
  697. if exists('$TMUX') || exists('$WINDOW')
  698. set t_ts=k
  699. set t_fs=\
  700. endif
  701. function! s:titlestring()
  702. if &filetype =~ '^lingr'
  703. let &titlestring = 'lingr: ' . lingr#unread_count()
  704. else
  705. let &titlestring = bufname('')
  706. endif
  707. endfunction
  708. " tabline
  709. set showtabline=2 " always show tabline
  710. let g:lightline = {
  711. \ 'colorscheme': 'wombat',
  712. \ 'active': {
  713. \ 'left': [
  714. \ ['mode', 'paste'],
  715. \ ['fugitive', 'gitgutter', 'filename'],
  716. \ ],
  717. \ 'right': [
  718. \ ['lineinfo', 'syntastic'],
  719. \ ['percent'],
  720. \ ['charcode', 'fileformat', 'fileencoding', 'filetype'],
  721. \ ]
  722. \ },
  723. \ 'component_function': {
  724. \ 'modified': 'MyModified',
  725. \ 'readonly': 'MyReadonly',
  726. \ 'fugitive': 'MyFugitive',
  727. \ 'filename': 'MyFilename',
  728. \ 'fileformat': 'MyFileformat',
  729. \ 'filetype': 'MyFiletype',
  730. \ 'fileencoding': 'MyFileencoding',
  731. \ 'mode': 'MyMode',
  732. \ 'syntastic': 'SyntasticStatuslineFlag',
  733. \ 'charcode': 'MyCharCode',
  734. \ 'gitgutter': 'MyGitGutter',
  735. \ },
  736. \ 'separator': { 'left': "\u2b80", 'right': "\u2b82" },
  737. \ 'subseparator': { 'left': "\u2b81", 'right': "\u2b83" }
  738. \ }
  739. function! MyModified()
  740. return &ft =~ 'help\|vimfiler\|gundo' ? '' : &modified ? '+' : &modifiable ? '' : '-'
  741. endfunction
  742. function! MyReadonly()
  743. return &ft !~? 'help\|vimfiler\|gundo' && &ro ? '\u2b64' : ''
  744. endfunction
  745. function! MyFilename()
  746. return ('' != MyReadonly() ? MyReadonly() . ' ' : '') .
  747. \ (&ft == 'vimfiler' ? vimfiler#get_status_string() :
  748. \ &ft == 'unite' ? unite#get_status_string() :
  749. \ &ft == 'vimshell' ? substitute(b:vimshell.current_dir,expand('~'),'~','') :
  750. \ '' != expand('%:t') ? expand('%:t') : '[No Name]') .
  751. \ ('' != MyModified() ? ' ' . MyModified() : '')
  752. endfunction
  753. function! MyFugitive()
  754. try
  755. if &ft !~? 'vimfiler\|gundo' && exists('*fugitive#head')
  756. let _ = fugitive#head()
  757. return strlen(_) ? '⭠ '._ : ''
  758. endif
  759. catch
  760. endtry
  761. return ''
  762. endfunction
  763. function! MyFileformat()
  764. return winwidth('.') > 70 ? &fileformat : ''
  765. endfunction
  766. function! MyFiletype()
  767. return winwidth('.') > 70 ? (strlen(&filetype) ? &filetype : 'no ft') : ''
  768. endfunction
  769. function! MyFileencoding()
  770. return winwidth('.') > 70 ? (strlen(&fenc) ? &fenc : &enc) : ''
  771. endfunction
  772. function! MyMode()
  773. return winwidth('.') > 60 ? lightline#mode() : ''
  774. endfunction
  775. function! MyGitGutter()
  776. if ! exists('*GitGutterGetHunkSummary')
  777. \ || ! get(g:, 'gitgutter_enabled', 0)
  778. \ || winwidth('.') <= 90
  779. return ''
  780. endif
  781. let symbols = [
  782. \ g:gitgutter_sign_added . ' ',
  783. \ g:gitgutter_sign_modified . ' ',
  784. \ g:gitgutter_sign_removed . ' '
  785. \ ]
  786. let hunks = GitGutterGetHunkSummary()
  787. let ret = []
  788. for i in [0, 1, 2]
  789. if hunks[i] > 0
  790. call add(ret, symbols[i] . hunks[i])
  791. endif
  792. endfor
  793. return join(ret, ' ')
  794. endfunction
  795. " https://github.com/Lokaltog/vim-powerline/blob/develop/autoload/Powerline/Functions.vim
  796. function! MyCharCode()
  797. if winwidth('.') <= 70
  798. return ''
  799. endif
  800. " Get the output of :ascii
  801. redir => ascii
  802. silent! ascii
  803. redir END
  804. if match(ascii, 'NUL') != -1
  805. return 'NUL'
  806. endif
  807. " Zero pad hex values
  808. let nrformat = '0x%02x'
  809. let encoding = (&fenc == '' ? &enc : &fenc)
  810. if encoding == 'utf-8'
  811. " Zero pad with 4 zeroes in unicode files
  812. let nrformat = '0x%04x'
  813. endif
  814. " Get the character and the numeric value from the return value of :ascii
  815. " This matches the two first pieces of the return value, e.g.
  816. " "<F> 70" => char: 'F', nr: '70'
  817. let [str, char, nr; rest] = matchlist(ascii, '\v\<(.{-1,})\>\s*([0-9]+)')
  818. " Format the numeric value
  819. let nr = printf(nrformat, nr)
  820. return "'". char ."' ". nr
  821. endfunction
  822. let &tabline = '%!' . s:SID_PREFIX() . 'tabline()'
  823. function! s:tabline()
  824. " show each tab
  825. let s = ''
  826. for i in range(1, tabpagenr('$'))
  827. let list = tabpagebuflist(i)
  828. let nr = tabpagewinnr(i)
  829. let current_tabnr = tabpagenr()
  830. "let title = bufname('')
  831. if i == current_tabnr
  832. let title = fnamemodify(getcwd(), ':t') . '/'
  833. "let title = bufname('')
  834. else
  835. let title = fnamemodify(gettabvar(i, 'cwd'), ':t') . '/'
  836. endif
  837. let title = empty(title) ? '[No Name]' : title
  838. let s .= i == current_tabnr ? '%#TabLineSel#' : '%#TabLine#'
  839. let s .= '%' . i . 'T[' . i . '] ' . title
  840. let s .= ' '
  841. endfor
  842. " show lingr unread count
  843. let lingr_unread = ""
  844. if exists('*lingr#unread_count')
  845. let lingr_unread_count = lingr#unread_count()
  846. if lingr_unread_count > 0
  847. let lingr_unread = "%#ErrorMsg#(" . lingr_unread_count . ")"
  848. elseif lingr_unread_count == 0
  849. let lingr_unread = "()"
  850. endif
  851. endif
  852. " build tabline
  853. let s .= '%#TabLineFill#%T%=%<[' . getcwd() . ']' . lingr_unread
  854. return s
  855. endfunction
  856. augroup vimrc-scratch-buffer
  857. autocmd!
  858. " Make a scratch buffer when unnamed buffer.
  859. autocmd BufEnter * call s:scratch_buffer()
  860. autocmd FileType qfreplace autocmd! vimrc-scratch * <buffer>
  861. function! s:scratch_buffer()
  862. if exists('b:scratch_buffer') || bufname('%') !=# '' || &l:buftype !=# ''
  863. return
  864. endif
  865. let b:scratch_buffer = 1
  866. setlocal buftype=nofile nobuflisted noswapfile bufhidden=hide
  867. augroup vimrc-scratch
  868. autocmd! * <buffer>
  869. autocmd BufWriteCmd <buffer> call s:scratch_on_BufWriteCmd()
  870. augroup END
  871. endfunction
  872. function! s:scratch_on_BufWriteCmd()
  873. silent! setl buftype< buflisted< swapfile< bufhidden< nomodified
  874. autocmd! vimrc-scratch * <buffer>
  875. if bufname('%') ==# '' && exists('b:scratch_buffer')
  876. execute 'saveas' . (v:cmdbang ? '!' : '') ' <afile>'
  877. filetype detect
  878. endif
  879. unlet! b:scratch_buffer
  880. endfunction
  881. augroup END
  882. 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
  883. let g:github_user = 'raa0121'
  884. let g:github#user = 'raa0121'