Files
dotfiles/nix/home/neovim/nvim/lua/plugins/telecope-heading.lua
2024-07-31 11:36:56 +02:00

22 lines
479 B
Lua

-- Telescope extention to switch between Headlines
-- https://github.com/crispgm/telescope-heading.nvim
return {
"telescope.nvim",
dependencies = {
"crispgm/telescope-heading.nvim",
keys = {
{ ";h", "<cmd>Telescope heading<cr>", desc = "Headlines" },
},
opts = {
extensions = {
heading = {
treesitter = true,
},
},
},
config = function()
require("telescope").load_extension("heading")
end,
},
}