Migrate '.vim/plugin' to neovim

This commit is contained in:
2025-10-20 23:52:13 +02:00
parent e3d9612e57
commit 24ce8f39af
9 changed files with 26 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
vim.cmd([[
fu! Compile()
if expand('%:e') == "md"
:silent exec "!pandoc % -s -o /tmp/op.pdf &"
endif
endfu
fu! Preview()
:call Compile()
:silent exec "!zathura /tmp/op.pdf &"
endfu
]])