25 lines
552 B
VimL
Raw Normal View History

2015-09-14 20:24:25 -04:00
set autowrite
set backspace=2
2016-03-20 19:21:39 -04:00
set encoding=utf-8
2015-09-14 20:24:25 -04:00
set hlsearch
set ignorecase
set incsearch
set mouse=a
set nocompatible
set smartcase
set smartindent
set title
syntax on
2016-11-28 07:30:16 -05:00
" Set beam shape in insert mode, underline shape in replace mode and block shape in normal mode.
let &t_SI = "\<Esc>[6 q"
let &t_SR = "\<Esc>[4 q"
let &t_EI = "\<Esc>[2 q"
2015-09-14 20:24:25 -04:00
" 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>