comment out neorg

This commit is contained in:
Price Hiller 2022-05-06 20:44:10 -05:00
parent acb8e6541b
commit c73e5b9f73

View File

@ -1,41 +1,41 @@
local parser_configs = require("nvim-treesitter.parsers").get_parser_configs() local parser_configs = require('nvim-treesitter.parsers').get_parser_configs()
parser_configs.norg = { -- parser_configs.norg = {
install_info = { -- install_info = {
url = "https://github.com/nvim-neorg/tree-sitter-norg", -- url = "https://github.com/nvim-neorg/tree-sitter-norg",
files = { "src/parser.c", "src/scanner.cc" }, -- files = { "src/parser.c", "src/scanner.cc" },
branch = "main", -- branch = "main",
}, -- },
} -- }
--
-- parser_configs.norg_meta = {
-- install_info = {
-- url = "https://github.com/nvim-neorg/tree-sitter-norg-meta",
-- files = { "src/parser.c" },
-- branch = "main",
-- },
-- }
--
-- parser_configs.norg_table = {
-- install_info = {
-- url = "https://github.com/nvim-neorg/tree-sitter-norg-table",
-- files = { "src/parser.c" },
-- branch = "main",
-- },
-- }
parser_configs.norg_meta = { local nvim_treesitter = require('nvim-treesitter.configs')
install_info = {
url = "https://github.com/nvim-neorg/tree-sitter-norg-meta",
files = { "src/parser.c" },
branch = "main",
},
}
parser_configs.norg_table = {
install_info = {
url = "https://github.com/nvim-neorg/tree-sitter-norg-table",
files = { "src/parser.c" },
branch = "main",
},
}
local nvim_treesitter = require("nvim-treesitter.configs")
nvim_treesitter.setup({ nvim_treesitter.setup({
ensure_installed = { -- ensure_installed = {
"norg", -- 'norg',
"norg_meta", -- 'norg_meta',
"norg_table", -- 'norg_table',
}, -- },
highlight = { highlight = {
enable = true, enable = true,
additional_vim_regex_highlighting = true, additional_vim_regex_highlighting = true,
disable = { "yaml" }, disable = { 'yaml' },
}, },
matchup = { matchup = {
enable = true, enable = true,