ce86c98e5a
Remove cursor shapes as not all terminal emulators support them
11 lines
261 B
VimL
11 lines
261 B
VimL
set autowrite
|
|
set ignorecase
|
|
set smartcase
|
|
set title
|
|
|
|
" 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>
|