require('luarocks-nvim').setup({}) require('neorg').setup({ load = { ["core.defaults"] = {}, ["core.integrations.treesitter"] = {}, ["core.autocommands"] = {}, ["core.concealer"] = {}, ["core.export"] = {}, ["core.presenter"] = { config = { zen_mode = "zen-mode" } }, ["core.tempus"] = {}, ["core.summary"] = {}, ["core.dirman"] = { config = { workspaces = { notes = "~/notes", -- Format: = }, -- Automatically detect whenever we have entered a subdirectory of a workspace autodetect = true, default_workspace = 'notes', open_last_workspace = false, index = "index.norg", -- The name of the main (root) .norg file } } } }) vim.api.nvim_create_user_command('Notes', 'Neorg index', {})