nixos/config/nvim/lua/config_plugins/config_telescope.lua
Evie Litherland-Smith 85342ba955 Convert nvim config to full dotfiles repo
Restructure ready for adding additional config files
2023-01-10 07:55:21 +00:00

15 lines
383 B
Lua

require('telescope').load_extension('aerial')
require('telescope').load_extension('notify')
require('telescope.actions')
local trouble = require('trouble.providers.telescope')
require('telescope').setup {
defaults = {
mappings = {
i = { ["<c-t>"] = trouble.open_with_trouble },
n = { ["<c-t>"] = trouble.open_with_trouble },
},
},
}