Replies: 2 comments
-
Hello, can you share your treesitter config (related to Neorg ?) Also, did you do every step in treesitter section in the readme ? (like |
Beta Was this translation helpful? Give feedback.
0 replies
-
@danymat Hi, here's the configuration with treesitter, I did use { 'nvim-treesitter/nvim-treesitter', run = ':TSUpdate' }
require('nvim-treesitter.configs').setup {
ensure_installed = { "norg", "markdown" },
highlight = { -- Be sure to enable highlights if you haven't!
enable = true,
}
}
use {
"nvim-neorg/neorg",
ft = "norg",
after = "nvim-treesitter",
config = function()
require('neorg').setup {
load = {
["core.defaults"] = {},
}
}
end,
requires = "nvim-lua/plenary.nvim"
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I installed neorg, but when opening ".norg" file it still behaves like a normal text file, and command
:Neorg
doesn't exist.My configuration using Packer:
I also tried install "tree-sitter" along with
--after = "nvim-treesitter"
as the "lazy loading" section in readme, still not work.What do I miss?
Beta Was this translation helpful? Give feedback.
All reactions