Last active
August 29, 2015 14:03
-
-
Save todashuta/2181005aaf731e38a758 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
| " minimal vimrc | |
| if &compatible | set nocompatible | endif | |
| augroup MyAutoCmd | |
| autocmd! | |
| augroup END | |
| if has('vim_starting') | |
| set runtimepath+=~/.vim/bundle/neobundle.vim | |
| endif | |
| call neobundle#rc(expand('~/.vim/bundle')) | |
| "NeoBundle 'hoge/fuga' | |
| "NeoBundle 'foo/bar' | |
| filetype plugin indent on | |
| "NeoBundleCheck | |
| syntax enable | |
| "language message C | |
| "scriptencoding utf-8 | |
| "set backspace=2 cmdheight=1 laststatus=2 | |
| "colorscheme hybrid | |
| " __END__ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment