Skip to content

Commit

Permalink
sneakily enable telescope-zotero extension
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbuhr committed Mar 12, 2024
1 parent 1b82a20 commit 9871d92
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lua/plugins/ui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ return {
{ 'nvim-telescope/telescope-ui-select.nvim' },
{ 'nvim-telescope/telescope-fzf-native.nvim', build = 'make' },
{ 'nvim-telescope/telescope-dap.nvim' },
{
'jmbuhr/telescope-zotero.nvim',
enabled = true,
dev = false,
dependencies = {
{ 'kkharji/sqlite.lua' },
},
config = function()
vim.keymap.set('n', '<leader>fz', ':Telescope zotero<cr>', { desc = '[z]otero' })
end,
},
},
config = function()
local telescope = require 'telescope'
Expand Down Expand Up @@ -86,6 +97,7 @@ return {
telescope.load_extension 'fzf'
telescope.load_extension 'ui-select'
telescope.load_extension 'dap'
telescope.load_extension 'zotero'
end,
},

Expand Down

0 comments on commit 9871d92

Please sign in to comment.