base neorg seems to be working
This commit is contained in:
parent
8fdec0bea8
commit
e9b0ab5c8d
@ -3,7 +3,9 @@ return {
|
|||||||
ft = "norg",
|
ft = "norg",
|
||||||
cmd = "Neorg",
|
cmd = "Neorg",
|
||||||
build = ":Neorg sync-parsers",
|
build = ":Neorg sync-parsers",
|
||||||
dependencies = { { "nvim-lua/plenary.nvim" } },
|
dependencies = {
|
||||||
|
{ "nvim-lua/plenary.nvim" },
|
||||||
|
},
|
||||||
opts = {
|
opts = {
|
||||||
load = {
|
load = {
|
||||||
["core.defaults"] = {},
|
["core.defaults"] = {},
|
||||||
|
|||||||
@ -1,34 +1,32 @@
|
|||||||
return {
|
return {
|
||||||
{
|
"nvim-treesitter/nvim-treesitter",
|
||||||
"nvim-treesitter/nvim-treesitter",
|
build = ":TSUpdate",
|
||||||
build = ":TSUpdate",
|
opts = {
|
||||||
opts = {
|
matchup = { enable = true },
|
||||||
matchup = { enable = true },
|
highlight = {
|
||||||
highlight = {
|
enable = true,
|
||||||
enable = true,
|
additional_vim_regex_highlighting = false,
|
||||||
additional_vim_regex_highlighting = false,
|
|
||||||
},
|
|
||||||
autopairs = { enable = true },
|
|
||||||
indent = { enable = true },
|
|
||||||
context_commentstring = { enable = true, enable_autocmd = false },
|
|
||||||
ensure_installed = {
|
|
||||||
"c_sharp",
|
|
||||||
"lua",
|
|
||||||
"c",
|
|
||||||
"vim",
|
|
||||||
"help",
|
|
||||||
"javascript",
|
|
||||||
"regex",
|
|
||||||
"markdown_inline",
|
|
||||||
"typescript",
|
|
||||||
"html",
|
|
||||||
"jsonc",
|
|
||||||
"go",
|
|
||||||
},
|
|
||||||
auto_install = true,
|
|
||||||
},
|
},
|
||||||
config = function(_, opts)
|
autopairs = { enable = true },
|
||||||
require("nvim-treesitter.configs").setup(opts)
|
indent = { enable = true },
|
||||||
end,
|
context_commentstring = { enable = true, enable_autocmd = false },
|
||||||
|
ensure_installed = {
|
||||||
|
"c_sharp",
|
||||||
|
"lua",
|
||||||
|
"c",
|
||||||
|
"vim",
|
||||||
|
"help",
|
||||||
|
"javascript",
|
||||||
|
"regex",
|
||||||
|
"markdown_inline",
|
||||||
|
"typescript",
|
||||||
|
"html",
|
||||||
|
"jsonc",
|
||||||
|
"go",
|
||||||
|
},
|
||||||
|
auto_install = true,
|
||||||
},
|
},
|
||||||
|
config = function(_, opts)
|
||||||
|
require("nvim-treesitter.configs").setup(opts)
|
||||||
|
end,
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user