Created
May 27, 2013 01:19
-
-
Save DaikiMaekawa/5654692 to your computer and use it in GitHub Desktop.
configuration file of the vim
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
syntax on | |
highlight LineNr ctermfg=darkyellow | |
highlight NonText ctermfg=darkgrey | |
highlight Folded ctermfg=blue | |
highlight SpecialKey cterm=underline ctermfg=darkgrey | |
highlight ZenkakuSpace cterm=underline ctermfg=lightblue guibg=white | |
match ZenkakuSpace / / | |
set ts=4 sw=4 | |
set softtabstop=4 | |
set expandtab | |
imap <c-j> <esc> | |
let mapleader = "\<C-k>" | |
let g:explHideFiles='^\.,\.gz$,\.exe$,\.zip$' | |
let g:explDetailedHelp=0 | |
let g:explWinSize='' | |
let g:explSplitBelow=1 | |
let g:explUseSeparators=1 | |
set hidden | |
set notitle | |
set autowrite | |
set scrolloff=5 | |
set showmatch | |
set backup | |
set number | |
set history=50 | |
set list | |
set listchars=tab:\ \ ,extends:<,trail:\ | |
set laststatus=2 | |
set directory=/tmp | |
set wildmode=full:list | |
set statusline=[%L]\ %t\ %y%{'['.(&fenc!=''?&fenc:&enc).':'.&ff.']'}%r%m%=%c:%l/%L | |
au BufEnter * execute ":lcd " . escape(expand("%:p:h"), " #\\") | |
let g:bufExplorerOpenMode = 1 | |
let g:bufExplorerSplitBelow = 1 | |
let g:bufExplorerSplitType = 15 | |
map <c-w><c-f> :FirstExplorerWindow<cr> | |
map <c-w><c-b> :BottomExplorerWindow<cr> | |
map <c-w><c-t> :WMToggle<cr> | |
let g:winManagerWindowLayout = 'FileExplorer|TagList' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment