Skip to content

Instantly share code, notes, and snippets.

@aomoriringo
Created March 21, 2014 05:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aomoriringo/9680277 to your computer and use it in GitHub Desktop.
Save aomoriringo/9680277 to your computer and use it in GitHub Desktop.
"""""""""""""""""""""
" general
"""""""""""""""""""""
set number
set tabstop=2
set laststatus=2
set t_Co=256
set expandtab
set noswapfile
set encoding=utf8
set fileencoding=utf8
"set list " 不可視文字の表示
set infercase " 文字がない場所へのカーソル移動
"""""""""""""""""""""""""
" Highlight End spaces
"""""""""""""""""""""""""
augroup HighlightTrailingSpaces
autocmd!
autocmd VimEnter,WinEnter,ColorScheme * highlight TrailingSpaces term=underline guibg=Red ctermbg=Red
autocmd VimEnter * match TrailingSpaces /\s\+$/
augroup END
"""""""""""""""""""""
" remap
"""""""""""""""""""""
inoremap <Right> <nop>
inoremap <Left> <nop>
inoremap <Up> <nop>
inoremap <Down> <nop>
""""""""""""""""""""""
"neobundle
""""""""""""""""""""""
if has('vim_starting')
set runtimepath+=~/.vim/bundle/neobundle.vim/
endif
call neobundle#rc(expand('~/.vim/bundle/'))
NeoBundleFetch 'Shougo/neobundle.vim'
NeoBundle 'modsound/gips-vim'
NeoBundle 'itchyny/lightline.vim'
NeoBundle 'mattn/webapi-vim'
NeoBundle 'mattn/gist-vim'
NeoBundle 'ujihisa/unite-colorscheme'
NeoBundle 'sjl/badwolf'
filetype plugin on
NeoBundleCheck
"""""""""""""""""""""
" colorscheme
"""""""""""""""""""""
colorscheme badwolf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment