Last active
August 29, 2015 14:06
-
-
Save kota/8c64ef5d38cd94e89849 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
if has('vim_starting') | |
set nocompatible " Be iMproved | |
" Required: | |
set runtimepath+=~/.vim/bundle/neobundle.vim/ | |
endif | |
" Required: | |
call neobundle#begin(expand('~/.vim/bundle/')) | |
" Let NeoBundle manage NeoBundle | |
" Required: | |
NeoBundleFetch 'Shougo/neobundle.vim' | |
NeoBundle 'Shougo/unite.vim' | |
NeoBundle 'scrooloose/nerdtree' | |
NeoBundle 'tpope/vim-rails' | |
NeoBundle 'bronson/vim-trailing-whitespace' | |
NeoBundle 'grep.vim' | |
NeoBundle 'scrooloose/syntastic' | |
let g:syntastic_mode_map = { 'mode': 'passive','active_filetypes': ['ruby'] } | |
let g:syntastic_ruby_checkers = ['rubocop'] | |
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 | |
"""""""""""""""""""""""""""""" | |
syntax on | |
set autoindent | |
set tabstop=2 | |
set softtabstop=2 | |
set expandtab | |
set laststatus=2 | |
set statusline=[%L]\ %t\ %y%{'['.(&fenc!=''?&fenc:&enc).':'.&ff.']'}%r%m%=%c:%l/%L | |
filetype on | |
filetype plugin on | |
let g:changelog_username="Fujiwara Kota" | |
let g:changelog_dateformat="%Y-%m-%d (%a)" | |
au FileType changelog set noexpandtab | |
au BufNewFile,BufRead *.erb set filetype=eruby | |
au BufNewFile,BufRead *.rake set filetype=ruby | |
au BufNewFile,BufRead *.go set filetype=go | |
au BufNewFile,BufRead *.as set filetype=actionscript | |
au BufNewFile,BufRead *.mxml set filetype=mxml | |
au BufNewFile,BufRead *.scala set filetype=scala | |
if &encoding !=# 'utf-8' | |
set encoding=japan | |
set fileencoding=japan | |
endif | |
if has('iconv') | |
let s:enc_euc = 'euc-jp' | |
let s:enc_jis = 'iso-2022-jp' | |
if iconv("\x87\x64\x87\x6a", 'cp932', 'eucjp-ms') ==# "\xad\xc5\xad\xcb" | |
let s:enc_euc = 'eucjp-ms' | |
let s:enc_jis = 'iso-2022-jp-3' | |
elseif iconv("\x87\x64\x87\x6a", 'cp932', 'euc-jisx0213') ==# "\xad\xc5\xad\xcb" | |
let s:enc_euc = 'euc-jisx0213' | |
let s:enc_jis = 'iso-2022-jp-3' | |
endif | |
if &encoding ==# 'utf-8' | |
let s:fileencodings_default = &fileencodings | |
let &fileencodings = s:enc_jis .','. s:enc_euc .',cp932' | |
let &fileencodings = &fileencodings .','. s:fileencodings_default | |
unlet s:fileencodings_default | |
else | |
let &fileencodings = &fileencodings .','. s:enc_jis | |
set fileencodings+=utf-8,ucs-2le,ucs-2 | |
if &encoding =~# '^\(euc-jp\|euc-jisx0213\|eucjp-ms\)$' | |
set fileencodings+=cp932 | |
set fileencodings-=euc-jp | |
set fileencodings-=euc-jisx0213 | |
set fileencodings-=eucjp-ms | |
let &encoding = s:enc_euc | |
let &fileencoding = s:enc_euc | |
else | |
let &fileencodings = &fileencodings .','. s:enc_euc | |
endif | |
endif | |
unlet s:enc_euc | |
unlet s:enc_jis | |
endif | |
if has('autocmd') | |
function! AU_ReCheck_FENC() | |
if &fileencoding =~# 'iso-2022-jp' && search("[^\x01-\x7e]", 'n') == 0 | |
let &fileencoding=&encoding | |
endif | |
endfunction | |
autocmd BufReadPost * call AU_ReCheck_FENC() | |
endif | |
set fileformats=unix,dos,mac | |
if exists('&ambiwidth') | |
set ambiwidth=double | |
endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment