-
| 
         I could swear that back in the day the lazy config had a lot more examples on how to configure stuff, now it's like three lines, which is cool and all but doesn't help people new to the whole thing figure out how to configure stuff. When did it change or am I imagining it? My problem now is that I want to change the localleader and I think I've done it right? return {
  {
    "nvim-neorg/neorg",
    build = ":Neorg sync-parsers",
    lazy = false, -- specify lazy = false because some lazy.nvim distributions set lazy = true by default
    dependencies = { "nvim-lua/plenary.nvim" },
    config = function()
      require("neorg").setup({
        load = {
          ["core.defaults"] = {}, -- Loads default behaviour
          ["core.keybinds"] = {
            config = {
              neorg_leader = ",",
            },
          },
        },
      })
    end,
  },
}However it doesn't seem to take and I'm unsure if it's my configuration or if lazyvim just doesn't let you remap ","  | 
  
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
| 
         Solved it, Apparently if you set   | 
  
Beta Was this translation helpful? Give feedback.
Solved it,
Apparently if you set
neorg_leaderit doesn't care if you also setvim.g.maplocalleader = ","in options.lua (LazyVim specific file for loading before lazy, your conf might differ)