Updates nvim setup

This commit is contained in:
Michel 2025-01-19 17:48:28 +01:00
parent 1c38c7b171
commit 6f069d32e1
13 changed files with 285 additions and 4 deletions

View file

@ -0,0 +1,5 @@
vim.api.nvim_create_user_command("Open", function()
local buffername = vim.fn.expand("%")
os.execute(string.format('xdg-open "%s" &> /dev/null &', buffername))
end, {})