blob: 18587de51d4a73ef6aafcf21381f6d0a52698ace (
plain) (
tree)
|
|
set clipboard+=unnamedplus
set nocompatible
set nohlsearch
set number
syntax on
" Automatically deletes all trailing whitespace and newlines at end of file on save.
autocmd BufWritePre * %s/\s\+$//e
autocmd BufWritepre * %s/\n\+\%$//e
" Update binds when sxhkdrc is updated.
autocmd BufWritePost *sxhkdrc !pkill -USR1 sxhkd
|