minor-update

This commit is contained in:
Alexander Navarro 2024-11-28 10:53:53 -03:00
parent f7c229fcf6
commit e17b1607bf
3 changed files with 7 additions and 12 deletions

View file

@ -16,6 +16,9 @@ return {
lazy = false,
cmd = "Grapple",
config = function()
local telescope = require("telescope")
telescope.load_extension("grapple")
-- Open graple window when open without arguments
local g = vim.api.nvim_create_augroup('Grapple-User', { clear = true })
@ -34,7 +37,7 @@ return {
and vim.api.nvim_buf_get_name(0) == ''
and vim.g.read_from_stdin == nil
then
require("grapple").toggle_tags()
telescope.extensions.grapple.tags()
end
end,
})