Init repository

This commit is contained in:
KK
2026-06-08 23:16:39 +02:00
commit 50d768e3a1
6 changed files with 338 additions and 0 deletions

15
.vimrc Normal file
View File

@@ -0,0 +1,15 @@
" 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