Created
April 2, 2014 23:24
-
-
Save otukutun/9945326 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nocompatible " Be iMproved | |
if has('vim_starting') | |
set runtimepath+=~/.vim/bundle/neobundle.vim/ | |
endif | |
call neobundle#rc(expand('~/.vim/bundle/')) | |
" Let NeoBundle manage NeoBundle | |
NeoBundleFetch 'Shougo/neobundle.vim' | |
"NeoBundle 'Shougo/neobundle.vim' | |
" Recommended to install | |
" After install, turn shell ~/.vim/bundle/vimproc, (n,g)make -f | |
" your_machines_makefile | |
NeoBundle 'Shougo/vimproc' | |
" My Bundles here: | |
" | |
" Note: You don't set neobundle setting in .gvimrc! | |
" Original repos on github | |
"NeoBundle 'tpope/vim-fugitive' | |
NeoBundle 'Lokaltog/vim-easymotion' | |
NeoBundle 'scrooloose/nerdtree' | |
NeoBundle 'scrooloose/syntastic' | |
NeoBundle 'violetyk/cake.vim' | |
NeoBundle 'Shougo/neocomplcache' | |
NeoBundle 'scrooloose/syntastic' | |
"neocomplcacheに関する | |
let g:neocomplcache_enable_at_startup = 1 | |
let g:neocomplcache_enable_camel_case_completion = 1 | |
let g:neocomplcache_enable_underbar_completion = 1 | |
let g:neocomplcache_smart_case = 1 | |
let g:neocomplcache_min_syntax_length = 3 | |
let g:neocomplcache_manual_completion_start_length = 0 | |
let g:neocomplcache_caching_percent_in_statusline = 1 | |
let g:neocomplcache_enable_skip_completion = 1 | |
let g:neocomplcache_skip_input_time = '0.5' | |
"syntasticに関する | |
let g:syntastic_check_on_open = 1 | |
let g:syntastic_enable_signs = 1 | |
let g:syntastic_echo_current_error = 1 | |
let g:syntastic_auto_loc_list = 2 | |
let g:syntastic_enable_highlighting = 1 | |
" なんでか分からないけど php コマンドのオプションを上書かないと動かなかった | |
let g:syntastic_php_php_args = '-l' | |
set statusline+=%#warningmsg# | |
set statusline+=%{SyntasticStatuslineFlag()} | |
set statusline+=%* | |
"NeoBundle 'rstacruz/sparkup', {'rtp': 'vim/'} | |
" vim-scripts repos | |
NeoBundle 'L9' | |
NeoBundle 'FuzzyFinder' | |
NeoBundle 'thinca/vim-quickrun' | |
" Non github repos | |
"NeoBundle 'git://git.wincent.com/command-t.git' | |
" Non git repos | |
"NeoBundle 'http://svn.macports.org/repository/macports/contrib/mpvim/' | |
"NeoBundle 'https://bitbucket.org/ns9tks/vim-fuzzyfinder' | |
filetype plugin indent on " Required! | |
syntax on | |
set encoding=utf8 | |
set number | |
set noautoindent | |
set tabstop=4 | |
set shiftwidth=0 | |
set incsearch | |
set nobackup | |
set expandtab | |
set list | |
set noswapfile | |
set ruler | |
set listchars=tab:>-,trail:-,nbsp:%,extends:>,precedes:< | |
colorscheme desert | |
" | |
" Brief help | |
" :NeoBundleList - list configured bundles | |
" :NeoBundleInstall(!) - install(update) bundles | |
" :NeoBundleClean(!) - confirm(or auto-approve) removal of unused bundles | |
" Installation check. | |
NeoBundleCheck |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment