chiark
/
gitweb
/
~mdw
/
termux-packages
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Initial push
[termux-packages]
/
packages
/
vim
/
vimrc
1
set autowrite
2
set backspace=2
3
set hlsearch
4
set ignorecase
5
set incsearch
6
set mouse=a
7
set nocompatible
8
set smartcase
9
set smartindent
10
set title
11
12
syntax on
13
14
" Scroll only one line for mouse wheel events to get smooth scrolling on touch screens
15
map <ScrollWheelUp> <C-Y>
16
imap <ScrollWheelUp> <C-X><C-Y>
17
map <ScrollWheelDown> <C-E>
18
imap <ScrollWheelDown> <C-X><C-E>