mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
13 lines
292 B
Lua
13 lines
292 B
Lua
-- Trouble
|
|
-- https://github.com/folke/trouble.nvim
|
|
|
|
local status, trouble = pcall(require, 'trouble')
|
|
if (not status) then return end
|
|
|
|
trouble.setup()
|
|
|
|
--- Mappings
|
|
local opts = { noremap = true, silent = true }
|
|
|
|
vim.api.nvim_set_keymap('n', '<leader>tt', [[<Cmd>:TroubleToggle<CR>]], opts)
|