Replies: 4 comments 1 reply
-
It would help if you included your entire neo-tree config here. I looked at the linked config and did not see the config you posted here. |
Beta Was this translation helpful? Give feedback.
-
Here is my config that disables and here is plugin from LazyVim https://github.com/LazyVim/LazyVim/blob/a50f92f7550fb6e9f21c0852e6cb190e6fcd50f5/lua/lazyvim/plugins/editor.lua#L7 |
Beta Was this translation helpful? Give feedback.
-
I think the problem is that LazyVim defines that mapping at the global level, so you would have to put your override at the global level as well: window = {
mappings = {
-- disable Y mapping
["Y"] = "noop"
}
}, |
Beta Was this translation helpful? Give feedback.
-
I think you have misunderstood me. These mappings with noop are to disable warnings. And they work ok for this purpose. No need for global mappings. |
Beta Was this translation helpful? Give feedback.
-
I needed to disable it:
My config https://github.com/rofrol/LazyVim--starter
Beta Was this translation helpful? Give feedback.
All reactions