mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
22 lines
479 B
Lua
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,
|
|
},
|
|
}
|