Fix for neorg 8.0.0
This commit is contained in:
parent
f00d49600f
commit
7415689345
@ -247,9 +247,16 @@ require('lazy').setup({
|
|||||||
'vim-pandoc/vim-pandoc-syntax',
|
'vim-pandoc/vim-pandoc-syntax',
|
||||||
-- neorg
|
-- neorg
|
||||||
{
|
{
|
||||||
'nvim-neorg/neorg',
|
"vhyrro/luarocks.nvim",
|
||||||
build = ':Neorg sync-parsers',
|
priority = 1000, -- We'd like this plugin to load first out of the rest
|
||||||
dependencies = { "nvim-lua/plenary.nvim" },
|
config = true, -- This automatically runs `require("luarocks-nvim").setup()`
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nvim-neorg/neorg",
|
||||||
|
dependencies = { "luarocks.nvim" },
|
||||||
|
lazy = false, -- Disable lazy loading as some `lazy.nvim` distributions set `lazy = true` by default
|
||||||
|
version = "*", -- Pin Neorg to the latest stable release
|
||||||
|
-- config = true,
|
||||||
},
|
},
|
||||||
-- vim-speeddating
|
-- vim-speeddating
|
||||||
'tpope/vim-speeddating',
|
'tpope/vim-speeddating',
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
vim.defer_fn(function()
|
vim.defer_fn(function()
|
||||||
require('nvim-treesitter.configs').setup {
|
require('nvim-treesitter.configs').setup {
|
||||||
-- Add languages to be installed here that you want installed for treesitter
|
-- Add languages to be installed here that you want installed for treesitter
|
||||||
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'javascript', 'typescript', 'vimdoc', 'vim', 'bash' },
|
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'javascript', 'typescript', 'vimdoc', 'vim', 'bash', 'norg' },
|
||||||
ignore_install = {'latex', 'tex', 'markdown'},
|
ignore_install = {'latex', 'tex', 'markdown'},
|
||||||
disable = {'latex', 'tex', 'markdown'},
|
disable = {'latex', 'tex', 'markdown'},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user