termux-api: Add options to termux-notification
[termux-packages] / packages / neovim / init.vim
1 set autowrite
2 set ignorecase
3 set smartcase
4 set title
5
6 let $NVIM_TUI_ENABLE_CURSOR_SHAPE=1
7
8 syntax on
9
10 " Scroll only one line for mouse wheel events to get smooth scrolling on touch screens
11 map <ScrollWheelUp> <C-Y>
12 imap <ScrollWheelUp> <C-X><C-Y>
13 map <ScrollWheelDown> <C-E>
14 imap <ScrollWheelDown> <C-X><C-E>