You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
360 B
18 lines
360 B
set autowrite
|
|
set backspace=2
|
|
set hlsearch
|
|
set ignorecase
|
|
set incsearch
|
|
set mouse=a
|
|
set nocompatible
|
|
set smartcase
|
|
set smartindent
|
|
set title
|
|
|
|
syntax on
|
|
|
|
" Scroll only one line for mouse wheel events to get smooth scrolling on touch screens
|
|
map <ScrollWheelUp> <C-Y>
|
|
imap <ScrollWheelUp> <C-X><C-Y>
|
|
map <ScrollWheelDown> <C-E>
|
|
imap <ScrollWheelDown> <C-X><C-E>
|
|
|