mirror of https://github.com/LazyVim/starter
leap-ast, lightbulb
parent
2d73335e8f
commit
b4cb757aa9
|
@ -0,0 +1,11 @@
|
|||
return {
|
||||
"jul-o/leap-ast.nvim",
|
||||
-- dir = '~/projects/nvim-plugins/leap-ast.nvim',
|
||||
dependencies = {
|
||||
"ggandor/leap.nvim",
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
},
|
||||
config = function()
|
||||
vim.keymap.set({ "n", "x", "o" }, "<leader>s", require("leap-ast").leap, { desc = "Leap AST" })
|
||||
end,
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
return {
|
||||
"kosayoda/nvim-lightbulb",
|
||||
dependencies = "antoinemadec/FixCursorHold.nvim",
|
||||
config = function()
|
||||
vim.cmd([[autocmd CursorHold,CursorHoldI * lua require('nvim-lightbulb').update_lightbulb()]])
|
||||
end,
|
||||
}
|
Loading…
Reference in New Issue