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.
14 lines
309 B
14 lines
309 B
set autowrite
|
|
set ignorecase
|
|
set smartcase
|
|
set title
|
|
|
|
let $NVIM_TUI_ENABLE_CURSOR_SHAPE=1
|
|
|
|
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>
|
|
|