Skip to content

Instantly share code, notes, and snippets.

@mopp
Created June 29, 2013 09:21
Show Gist options
  • Save mopp/5890504 to your computer and use it in GitHub Desktop.
Save mopp/5890504 to your computer and use it in GitHub Desktop.
set nocompatible
set number
set laststatus=2
set statusline=%<%F\ %m%r%h%w%y%{'['.(&fenc!=''?&fenc:&enc).']['.&fileformat.']'}%=%l/%L,%c%V%8P
set cmdheight=2 " コマンドラインの行数
set showcmd " 入力中のコマンド表示
set showmatch " 括弧強調
set showtabline=2 " タブバーを常に表示
set backspace=2 " Backspaceの動作
" NeoBundle
if has('vim_starting')
set runtimepath+=~/.vim/bundle/neobundle.vim
endif
call neobundle#rc()
NeoBundleFetch 'Shougo/neobundle.vim'
NeoBundle 'Shougo/neocomplete.vim'
NeoBundle 'Shougo/context_filetype.vim'
let g:neocomplete#enable_at_startup = 1
syntax enable " 強調表示有効
colorscheme desert
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment