Files
dotfiles/.vimrc
2026-06-08 23:16:39 +02:00

16 lines
415 B
VimL

" Use 4 spaces for indentation
set tabstop=4
set shiftwidth=4
set softtabstop=4
set expandtab
" Copy yanked text to the Wayland system clipboard using wl-copy.
if executable('wl-copy')
augroup wayland_clipboard
autocmd!
autocmd TextYankPost * if v:event.operator ==# 'y' |
\ call system('wl-copy', getreg(v:event.regname ==# '' ? '"' : v:event.regname)) |
\ endif
augroup END
endif