chore: added neorg

This commit is contained in:
Afonso Franco 2023-03-07 21:48:39 +00:00
parent 5877110144
commit 6032850875
Signed by: afonso
SSH key fingerprint: SHA256:gkVPzsQQJzqi21ntQBV6pXTx4bYI53rFGI4XtvCpwd4
3 changed files with 21 additions and 4 deletions

View file

@ -160,7 +160,7 @@ cmp.setup {
{ name = "buffer", keyword_length = 5 },
},
{
{ name = "orgmode" }
{ name = "neorg" }
}
),
confirm_opts = {

View file

@ -145,9 +145,23 @@ lazy.setup({
end,
},
-------------------------------------------SYNTAX----------------------------------------------
'kmonad/kmonad-vim',
'elkowar/yuck.vim'
-------------------------------------------OTHERS----------------------------------------------
{
"nvim-neorg/neorg",
build = ":Neorg sync-parsers",
opts = {
load = {
["core.defaults"] = {}, -- Loads default behaviour
["core.norg.concealer"] = {} -- Adds pretty icons to your documents
},
},
dependencies = { { "nvim-lua/plenary.nvim" } },
},
'kmonad/kmonad-vim',
'elkowar/yuck.vim',
--Discord Rich Presence
'andweeb/presence.nvim'
})

View file

@ -3,6 +3,9 @@ local null_ls = require("null-ls")
null_ls.setup({
sources = {
null_ls.builtins.formatting.rustfmt,
null_ls.builtins.formatting.stylish_haskell,
null_ls.builtins.formatting.fourmolu,
null_ls.builtins.formatting.black,
null_ls.builtins.formatting.prettierd.with({
filetypes = { "html", "json", "yaml", "markdown" },
}),