diff options
-rw-r--r-- | lua/plugins.lua | 3 | ||||
-rw-r--r-- | lua/plugins/treesitter.lua | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 4aae414..500a28e 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -47,7 +47,8 @@ require("lazy").setup({ -- Writing { "junegunn/goyo.vim", ft = { 'markdown', 'markdown.pandoc', 'tex', 'c' } }, { "junegunn/limelight.vim", ft = { 'markdown', 'markdown.pandoc', 'tex', 'c' } }, - { "vim-pandoc/vim-pandoc-syntax", ft = { 'markdown', 'markdown.pandoc' } }, + { "vim-pandoc/vim-pandoc", ft = { 'markdown', 'markdown.pandoc' }, lazy = false }, + { "vim-pandoc/vim-pandoc-syntax", ft = { 'markdown', 'markdown.pandoc' }, lazy = false }, { "lervag/vimtex", ft = { 'tex' }, lazy = false }, -- Git intigration diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 6300d6b..8190ac3 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -20,6 +20,7 @@ require 'nvim-treesitter.configs'.setup { -- the name of the parser) -- list of language that will be disabled -- disable = { "c", "rust" }, + disable = { "markdown" }, -- Setting this to true will run `:h syntax` and tree-sitter at the same time. -- Set this to `true` if you depend on 'syntax' being enabled (like for indentation). |