this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[nvim] trying neorg

+20
+1
nvim/init.lua
··· 20 20 require "plugins.illuminate" 21 21 require "plugins.notify" 22 22 require "plugins.indentblankline" 23 + require "plugins.neorg"
+9
nvim/lua/core/plugins.lua
··· 59 59 use "rcarriga/nvim-notify" 60 60 use "lukas-reineke/indent-blankline.nvim" 61 61 62 + -- Note 63 + use "nvim-neorg/neorg" 64 + use { 65 + "iamcco/markdown-preview.nvim", 66 + run = function () 67 + vim.fn["mkdp#util#install"]() 68 + end, 69 + } 70 + 62 71 -- Terminal 63 72 use { 64 73 "akinsho/toggleterm.nvim",
+10
nvim/lua/plugins/neorg.lua
··· 1 + local ok, neorg = pcall(require, "neorg") 2 + if not ok then return end 3 + 4 + neorg.setup { 5 + load = { 6 + ["core.defaults"] = {}, 7 + ["core.norg.concealer"] = {}, 8 + ["core.norg.completion"] = {}, 9 + } 10 + }