diff --git a/fnl/plugin.fnl b/fnl/plugin.fnl index 26f4921..e0bc3c7 100644 --- a/fnl/plugin.fnl +++ b/fnl/plugin.fnl @@ -204,6 +204,26 @@ :after :nvim-lspconfig :config (module-fn! :plugin.jdtls :configure)) + ;; neorg + (use! :nvim-neorg/neorg + :ft "norg" + :cmd "Neorg" + :module :neorg + :requires :nvim-lua/plenary.nvim + :run ":Neorg sync-parsers" + :config #(setup! :neorg + :load { + :core.defaults { } + :core.norg.concealer { } + :core.norg.completion { + :config { :engine :nvim-cmp }} + :core.norg.dirman { + :config { + :workspaces { + :japanese "~/neorg/japanese/" + } + :index "index.norg" }}})) + ;; Sync all packages on first launch (if _G.first_launch (module-call! :packer :sync)))