Update files

This commit is contained in:
Chris
2026-07-09 16:43:59 +01:00
parent 6e5fc4d1b4
commit bf0b652992
7 changed files with 368 additions and 312 deletions
+6
View File
@@ -163,5 +163,11 @@ helpers.format_buffer = function(formatter, buf, cwd)
vim.api.nvim_buf_set_lines(buf, 0, -1, false, vim.split(result.stdout, '\n', { plain = true }))
end
helpers.create_bookmark = function(key, bookmark)
helpers.map('<Leader>b' .. key, function()
vim.cmd('edit ' .. bookmark)
end, { desc = 'Navigate to ' .. bookmark })
end
return helpers