Rebuilding config

This commit is contained in:
Ian
2026-06-29 22:59:52 +02:00
commit 9a7fa39f63
25 changed files with 1849 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
if exists('g:close_open_buff')
finish
endif
let s:save_cpo = &cpo
set cpo&vim
hi def link WhidHeader Number
hi def link WhidSubHeader Identifier
command! CloseOpenBuff lua require'buffer_closer'.close_open_buff()
let &cpo = s:save_cpo
unlet s:save_cpo
let g:close_open_buff = 1