39 lines
698 B
VimL
39 lines
698 B
VimL
syntax on
|
|
filetype plugin indent on
|
|
set t_Co=256
|
|
colorscheme soruby
|
|
set tw=0
|
|
set sw=4
|
|
set ts=4
|
|
set ls=0
|
|
set number
|
|
set noerrorbells
|
|
set autoindent
|
|
set tabstop=4
|
|
set textwidth=80
|
|
set shiftwidth=4
|
|
set shiftround
|
|
set modeline
|
|
set nobackup
|
|
set nohlsearch
|
|
set foldenable
|
|
set listchars=tab:»·
|
|
set colorcolumn=80
|
|
highlight ColorColumn ctermbg=darkred guibg=darkred
|
|
|
|
autocmd bufnewfile *.py so ~/etc/vim/header_python
|
|
autocmd bufnewfile *.html so ~/etc/vim/header_html
|
|
autocmd bufnewfile,bufread *.tpl set filetype=html
|
|
|
|
inoremap ( ()<Esc>i
|
|
inoremap [ []<Esc>i
|
|
inoremap { {}<Esc>i
|
|
inoremap < <><Esc>i
|
|
inoremap " ""<Esc>i
|
|
|
|
"noremap s h
|
|
"noremap n k
|
|
"noremap r j
|
|
"noremap t l
|
|
|
|
map <F1> :NERDTreeToggle<CR>
|