Created
January 21, 2017 09:10
-
-
Save lv7777/2dba549dde85544c25e521a88a955a63 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 number | |
set laststatus=2 | |
" set cursorline | |
set title | |
set fenc=utf-8 | |
set showcmd | |
set ignorecase | |
set smartcase | |
set expandtab | |
syntax on | |
set smartindent | |
set autoindent | |
set shiftwidth=4 | |
set clipboard+=unnamed | |
set clipboard+=autoselect | |
" Note: Skip initialization for vim-tiny or vim-small. | |
if 0 | endif | |
if &compatible | |
set nocompatible " Be iMproved | |
endif | |
" Required: | |
set runtimepath+=~/.vim/bundle/neobundle.vim/ | |
" Required: | |
call neobundle#begin(expand('~/.vim/bundle/')) | |
" Let NeoBundle manage NeoBundle | |
" Required: | |
NeoBundleFetch 'Shougo/neobundle.vim' | |
" My Bundles here: | |
" Refer to |:NeoBundle-examples|. | |
" Note: You don't set neobundle setting in .gvimrc! | |
call neobundle#end() | |
" Required: | |
filetype plugin indent on | |
" If there are uninstalled bundles found on startup, | |
" this will conveniently prompt you to install them. | |
NeoBundleCheck |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment