Add podman quadlet detection to vimrc

This commit is contained in:
2026-08-05 22:17:52 +03:00
parent cc8fa9d833
commit 9df1c94227
+9
View File
@@ -23,6 +23,7 @@
" -> Spell checking " -> Spell checking
" -> Misc " -> Misc
" -> Helper functions " -> Helper functions
" -> void custom
" "
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
@@ -381,3 +382,11 @@ function! VisualSelection(direction, extra_filter) range
let @/ = l:pattern let @/ = l:pattern
let @" = l:saved_reg let @" = l:saved_reg
endfunction endfunction
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => void custom
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
if has("autocmd")
autocmd BufNewFile,BufRead *.container,*.volume,*.network,*.build,*.pod,*.kube set filetype=systemd
endif