/lazyvim-config

My LazyVim-based Neovim config

Primary LanguageLua

Based on the LazyVim starter kit.

Tips and Tricks

To disable a particular key mapping for a default plug-in, simply set it to false in the plug-in's keys settings:

return {
  "foo/plugin",
  keys = {
    { "<leader>f", false },
  }
}