Skip to content

Instantly share code, notes, and snippets.

@Gitmoko
Created March 28, 2018 09:07
Show Gist options
  • Save Gitmoko/0d3a7585d83b888f4db6c375bc20d68d to your computer and use it in GitHub Desktop.
Save Gitmoko/0d3a7585d83b888f4db6c375bc20d68d to your computer and use it in GitHub Desktop.
let g:vimproc#download_windows_dll = 1
filetype plugin on
set number
set encoding=utf-8
set fileencoding=utf-8
set smarttab
set expandtab
set tabstop=2
set shiftwidth=2
" vim起動時のみruntimepathにneobundle.vimを追加
if has('vim_starting')
set nocompatible
set runtimepath+=~/.vim/bundle/neobundle.vim
endif
" neobundle.vimの初期化
" NeoBundleを更新するための設定
call neobundle#begin(expand('~/.vim/bundle'))
NeoBundleFetch 'Shougo/neobundle.vim'
" 読み込むプラグインを記載
NeoBundle 'Shougo/vimproc.vim', {
\ 'build' : {
\ 'windows' : 'tools\\update-dll-mingw',
\ 'cygwin' : 'make -f make_cygwin.mak',
\ 'mac' : 'make -f make_mac.mak',
\ 'linux' : 'make',
\ 'unix' : 'gmake',
\ },
\ }
NeoBundle 'lervag/vimtex'
NeoBundle 'Shougo/unite.vim'
NeoBundle 'itchyny/lightline.vim'
NeoBundle 'thinca/vim-quickrun'
let g:quickrun_config={'_': {'split': ''}}
NeoBundle 'Shougo/neocomplcache'
let g:neocomplcache_enable_at_startup = 1
call neobundle#end()
" 読み込んだプラグインも含め、ファイルタイプの検出、ファイルタイプ別プラグイン/インデントを有効化する
filetype plugin indent on
" インストールのチェック
NeoBundleCheck
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment