chore: added neorg
This commit is contained in:
parent
5877110144
commit
6032850875
3 changed files with 21 additions and 4 deletions
|
@ -160,7 +160,7 @@ cmp.setup {
|
|||
{ name = "buffer", keyword_length = 5 },
|
||||
},
|
||||
{
|
||||
{ name = "orgmode" }
|
||||
{ name = "neorg" }
|
||||
}
|
||||
),
|
||||
confirm_opts = {
|
||||
|
|
|
@ -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'
|
||||
|
||||
})
|
||||
|
|
|
@ -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" },
|
||||
}),
|
||||
|
|
Loading…
Add table
Reference in a new issue