vim: Update to latest patch level
[termux-packages] / packages / vim / vimrc
CommitLineData
59f0d218
FF
1set autowrite
2set backspace=2
5082cc49 3set encoding=utf-8
59f0d218
FF
4set hlsearch
5set ignorecase
6set incsearch
7set mouse=a
8set nocompatible
9set smartcase
10set smartindent
11set title
12
13syntax on
14
15" Scroll only one line for mouse wheel events to get smooth scrolling on touch screens
16map <ScrollWheelUp> <C-Y>
17imap <ScrollWheelUp> <C-X><C-Y>
18map <ScrollWheelDown> <C-E>
19imap <ScrollWheelDown> <C-X><C-E>