Created
November 23, 2014 18:28
-
-
Save mimura1133/bac8b581793d3fe9edea to your computer and use it in GitHub Desktop.
vimrc
This file contains 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 | |
if &term == 'win32' | |
set termencoding=cp932 | |
set encoding=cp932 | |
endif | |
set fileencodings=utf-8,cp932 | |
set smartindent | |
set noexpandtab | |
set smarttab | |
set nowrap | |
set number | |
set ruler | |
set list | |
set showmode | |
set ignorecase | |
set smartcase | |
set tabstop=8 | |
set wildmenu | |
set formatoptions +=mM | |
set laststatus=2 | |
set cmdheight=2 | |
set showcmd | |
set listchars=tab:>-,extends:<,trail:-,eol:< | |
set title | |
set showmatch | |
set clipboard=unnamed | |
set autoread | |
colorscheme darkblue | |
set hlsearch | |
nmap <ESC><ESC> ;nohlsearch<CR><ESC> | |
filetype plugin indent on | |
filetype indent on | |
if has('vim_starting') | |
set runtimepath+=~/.vim/bundle/neobundle.vim | |
call neobundle#rc(expand('~/.vim/bundle/')) | |
endif | |
NeoBundle 'Shougo/neobundle.vim' | |
NeoBundle 'Shougo/vimproc', { | |
\ 'build' : { | |
\ 'windows' : 'make -f make_mingw32.mak', | |
\ 'unix' : 'make -f make_unix.mak', | |
\}, | |
\} | |
NeoBundle 'VimClojure' | |
NeoBundle 'Shougo/vimshell' | |
NeoBundle 'Shougo/unite.vim' | |
NeoBundle 'Shougo/neocomplcache' | |
NeoBundle 'Shougo/neosnippet' | |
NeoBundle 'Shougo/neosnippet-snippets' | |
NeoBundle 'jpalardy/vim-slime' | |
NeoBundle 'scrooloose/syntastic' | |
NeoBundle 'thinca/vim-quickrun' | |
NeoBundle 'tpope/vim-fugitive' | |
NeoBundle 'h1mesuke/unite-outline' | |
NeoBundle 'tsukkee/unite-tag' | |
NeoBundle 'mattn/emmet-vim' | |
NeoBundle 'taichouchou2/surround.vim' | |
NeoBundle 'taichouchou2/html5.vim' | |
NeoBundle 'taichouchou2/vim-javascript' | |
NeoBundle 'kchmck/vim-coffee-script' | |
NeoBundle 'hail2u/vim-css3-syntax' | |
syntax on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment