mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
feat: add Dotbot
This commit is contained in:
21
config/nvim/lua/plugins/telecope-heading.lua
Normal file
21
config/nvim/lua/plugins/telecope-heading.lua
Normal file
@@ -0,0 +1,21 @@
|
||||
-- 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,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user