22 lines
274 B
VimL
22 lines
274 B
VimL
|
syntax on
|
||
|
|
||
|
filetype on
|
||
|
filetype indent on
|
||
|
filetype plugin on
|
||
|
|
||
|
set directory^=~/.vim/_temp//
|
||
|
set hlsearch
|
||
|
set ignorecase
|
||
|
set incsearch
|
||
|
set laststatus=2
|
||
|
set nowrap
|
||
|
set number
|
||
|
set smartcase
|
||
|
set tabstop=4
|
||
|
set textwidth=67
|
||
|
|
||
|
map ,t :w<CR>
|
||
|
map ,- :nohl<CR>
|
||
|
|
||
|
call pathogen#infect()
|