.vimrc 28 KB

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