mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-22 04:21:08 +00:00
fix(trouble): don't enable symbols keymap when outline.nvim enabled (#3408)
This commit is contained in:
parent
e7430b0776
commit
146c87cd78
1 changed files with 8 additions and 0 deletions
|
|
@ -1,4 +1,12 @@
|
|||
return {
|
||||
-- Disable `<leader>cs` keymap so it doesn't conflict with `outline.nvim`
|
||||
{
|
||||
"folke/trouble.nvim",
|
||||
optional = true,
|
||||
keys = {
|
||||
{ "<leader>cs", false },
|
||||
},
|
||||
},
|
||||
{
|
||||
"hedyhli/outline.nvim",
|
||||
keys = { { "<leader>cs", "<cmd>Outline<cr>", desc = "Toggle Outline" } },
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue