remove neorg

This commit is contained in:
LordMZTE 2022-05-16 15:04:24 +02:00
parent 6c0a78bbb4
commit a3d885a16f
Signed by: LordMZTE
GPG key ID: B64802DC33A64FF6
4 changed files with 1 additions and 37 deletions

View file

@ -1,13 +0,0 @@
local norg = require "neorg"
norg.setup {
load = {
["core.norg.concealer"] = {},
["core.norg.completion"] = {
config = {
engine = "nvim-cmp",
},
},
["core.defaults"] = {},
},
}

View file

@ -36,7 +36,6 @@ cmp.setup {
{ name = "buffer" }, { name = "buffer" },
{ name = "crates" }, { name = "crates" },
{ name = "luasnip" }, { name = "luasnip" },
{ name = "neorg" },
{ name = "nvim_lsp" }, { name = "nvim_lsp" },
{ name = "path" }, { name = "path" },
{ name = "rg", option = { additional_arguments = "--max-depth 4" } }, { name = "rg", option = { additional_arguments = "--max-depth 4" } },

View file

@ -12,24 +12,8 @@ parser_config.haxe = {
filetype = "haxe", filetype = "haxe",
} }
parser_config.norg_meta = {
install_info = {
url = "https://github.com/nvim-neorg/tree-sitter-norg-meta",
files = { "src/parser.c" },
branch = "main",
},
}
parser_config.norg_table = {
install_info = {
url = "https://github.com/nvim-neorg/tree-sitter-norg-table",
files = { "src/parser.c" },
branch = "main",
},
}
configs.setup { configs.setup {
ensure_installed = { "haxe", "norg", "norg_meta", "norg_table" }, ensure_installed = { "haxe" },
highlight = { highlight = {
enable = true, enable = true,
}, },

View file

@ -136,12 +136,6 @@ return require("packer").startup(function(use)
end, end,
} }
use {
"nvim-neorg/neorg",
config = pconf "norg",
after = "nvim-treesitter",
}
use { use {
"itmecho/neoterm.nvim", "itmecho/neoterm.nvim",
config = pconf "nterm", config = pconf "nterm",