blob: 79b6e55b907ebca05b1a6db031d9ceda75bc49a9 (
plain) (
tree)
|
|
filetype on
syntax on
colorscheme desert
set number
filetype indent on
set nowrap
set tabstop=4
set shiftwidth=4
set expandtab
set smartindent
set autoindent
set guioptions-=T
" highlight search matches
set hlsearch
" show matching parenthesis
set showmatch
" remove whitespace on write
autocmd BufWritePre * :%s/\s\+$//e
" press esc to cancel search
nnoremap <silent> <Esc> :nohlsearch<Bar>:echo<CR>
|