.vimrc 28 KB

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