From e9b0ab5c8dd2c338ed9f4ea98084e72069cf88df Mon Sep 17 00:00:00 2001 From: Solomon Laing Date: Wed, 13 Sep 2023 08:37:11 +0930 Subject: [PATCH] base neorg seems to be working --- .config/nvim/lua/lazyvim/plugins/neorg.lua | 4 +- .../nvim/lua/lazyvim/plugins/treesitter.lua | 58 +++++++++---------- 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/.config/nvim/lua/lazyvim/plugins/neorg.lua b/.config/nvim/lua/lazyvim/plugins/neorg.lua index 6872adf..ceb7bed 100644 --- a/.config/nvim/lua/lazyvim/plugins/neorg.lua +++ b/.config/nvim/lua/lazyvim/plugins/neorg.lua @@ -3,7 +3,9 @@ return { ft = "norg", cmd = "Neorg", build = ":Neorg sync-parsers", - dependencies = { { "nvim-lua/plenary.nvim" } }, + dependencies = { + { "nvim-lua/plenary.nvim" }, + }, opts = { load = { ["core.defaults"] = {}, diff --git a/.config/nvim/lua/lazyvim/plugins/treesitter.lua b/.config/nvim/lua/lazyvim/plugins/treesitter.lua index 46fbc37..4e53936 100644 --- a/.config/nvim/lua/lazyvim/plugins/treesitter.lua +++ b/.config/nvim/lua/lazyvim/plugins/treesitter.lua @@ -1,34 +1,32 @@ return { - { - "nvim-treesitter/nvim-treesitter", - build = ":TSUpdate", - opts = { - matchup = { enable = true }, - highlight = { - enable = true, - 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, + "nvim-treesitter/nvim-treesitter", + build = ":TSUpdate", + opts = { + matchup = { enable = true }, + highlight = { + enable = true, + additional_vim_regex_highlighting = false, }, - config = function(_, opts) - require("nvim-treesitter.configs").setup(opts) - end, + 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) + require("nvim-treesitter.configs").setup(opts) + end, }