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.
16 lines
321 B
16 lines
321 B
" EXTRA vim user
|
|
" ---------------
|
|
|
|
" Highlight on Yank
|
|
if has('nvim')
|
|
" NVIM only features
|
|
augroup highlight_yank
|
|
autocmd!
|
|
au TextYankPost * silent! lua vim.highlight.on_yank()
|
|
augroup END
|
|
else
|
|
" VIM only features
|
|
if isdirectory($VIMRUNTIME . '/pack/dist/opt/hlyank')
|
|
packadd! hlyank
|
|
endif
|
|
endif
|