nvim/init.lua

8 lines
334 B
Lua
Raw Normal View History

2024-07-07 16:31:55 -04:00
-- nvim-linux64/share/nvim/runtime/lua/vim/lsp.lua:354 is setting this keymap
-- before my LazyVim keymap.lua, and then it takes priority over my own keymap;
-- setting it to anything here prevents that from happening.
vim.keymap.set("n", "K", function () end)
2023-03-08 13:06:56 -05:00
-- bootstrap lazy.nvim, LazyVim and your plugins
require("config.lazy")