diff --git a/dot_config/nvim/exact_lua/exact_plugins/exact_editor/syntax.lua b/dot_config/nvim/exact_lua/exact_plugins/exact_editor/syntax.lua index 7634472..71c2bf6 100644 --- a/dot_config/nvim/exact_lua/exact_plugins/exact_editor/syntax.lua +++ b/dot_config/nvim/exact_lua/exact_plugins/exact_editor/syntax.lua @@ -1,4 +1,9 @@ return { + { 'plasticboy/vim-markdown', + config = function() + vim.g.vim_markdown_folding_disabled = 1 + end, + }, { "nvim-treesitter/nvim-treesitter", cond = function() @@ -15,18 +20,23 @@ return { -- ensure_installed = { "regex", + "bash", + "html", + "javascript", + "json", "lua", - "php", + "markdown", + "markdown_inline", "python", + "php", "go", "html", "css", - "javascript" }, highlight = { enable = true, -- 啟用高亮 }, - indent = { enable = true }, + -- indent = { enable = true }, }) end, },