diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index fa4956f..54a1cc8 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -2,6 +2,7 @@ return { { "nvim-telescope/telescope.nvim", config = function() + local actions = require("telescope.actions") require("telescope").setup({ pickers = { find_files = { @@ -26,6 +27,11 @@ return { layout_config = { width = 0.75, }, + mappings = { + i = { + [""] = actions.smart_send_to_loclist + actions.open_loclist + } + }, }, current_buffer_fuzzy_find = { layout_strategy = "vertical",