Last active
August 29, 2015 14:21
-
-
Save unarist/c9f69e31dfe757c7d2fd to your computer and use it in GitHub Desktop.
portable vimrc
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
" https://gist.githubusercontent.com/unarist/c9f69e31dfe757c7d2fd/raw/.vimrc | |
set encoding=utf-8 | |
set fileencodings=utf-8,iso-2022-jp,cp932,eucjp,default | |
filetype plugin on | |
filetype indent on | |
colorscheme torte | |
set scrolloff=2 | |
set number | |
set nowrap | |
" 最も外側の折り畳みは自動展開 | |
set foldlevelstart=1 | |
set tabstop=4 shiftwidth=4 softtabstop=4 noet | |
set list | |
set listchars=tab:^\ ,trail:-,extends:»,precedes:«,nbsp:% | |
set laststatus=2 | |
if has("statusline") | |
set statusline=%<%f\ %h%m%r%=%{\"[\".(&fenc==\"\"?&enc:&fenc).((exists(\"+bomb\")\ &&\ &bomb)?\",B\":\"\").\"]\ \"}%k\ %-14.(%l,%c%V%)\ %P | |
endif | |
let php_parent_error_close = 1 | |
let php_folding = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment