Skip to content

Commit

Permalink
add dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cappyzawa committed Jan 21, 2024
1 parent 45ea16e commit 8ae33b0
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .config/nvim/lua/plugins/editor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@ local icons = {
return {
{
"nvim-telescope/telescope.nvim",
dependencies = {
{
"nvim-telescope/telescope-fzf-native.nvim",
build = "make",
config = function()
require("telescope").load_extension("fzf")
end,
},
{
"rcarriga/nvim-notify",
config = function()
require("telescope").load_extension("notify")
end,
},
},
opts = function()
local Util = require("lazyvim.util")
local actions = require("telescope.actions")
Expand Down

0 comments on commit 8ae33b0

Please sign in to comment.