Skip to content

Commit

Permalink
telescope-import for neovim
Browse files Browse the repository at this point in the history
  • Loading branch information
fortes committed Dec 5, 2023
1 parent dc660af commit 86cc2f4
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion stowed-files/nvim/.config/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -471,9 +471,21 @@ require("lazy").setup({
}
},

{
'piersolenski/telescope-import.nvim',
dependencies = 'nvim-telescope/telescope.nvim',
config = function()
require("telescope").load_extension("import")
-- <leader>i to import
vim.keymap.set('n', '<leader>i', '<cmd>Telescope import<cr>', {
noremap=true, silent=true
})
end
},

{
'AckslD/nvim-neoclip.lua',
dependencies = {
requires = {
-- Uses telescope for selection
'nvim-telescope/telescope.nvim',
},
Expand Down

0 comments on commit 86cc2f4

Please sign in to comment.