Add neorg

This commit is contained in:
Alexander Rosenberg 2022-12-10 04:59:31 -08:00
parent 4bd0009ae6
commit a80547d28d
Signed by: Zander671
GPG Key ID: 5FD0394ADBD72730

View File

@ -204,6 +204,26 @@
:after :nvim-lspconfig :after :nvim-lspconfig
:config (module-fn! :plugin.jdtls :configure)) :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 ;; Sync all packages on first launch
(if _G.first_launch (if _G.first_launch
(module-call! :packer :sync))) (module-call! :packer :sync)))