You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
local opts = { noremap = true, silent = true }
|
|
local keymap = function(mode, key, command)
|
|
vim.api.nvim_set_keymap(mode, key, command, opts)
|
|
end
|
|
|
|
keymap("n", "<leader>td", ":Trouble document_diagnostics<cr>")
|
|
keymap("n", "<leader>tt", ":TroubleToggle<cr>")
|