Revert "feat(nvim): improve treesitter highlighting w/ markid"
This reverts commit cd23fdf045
.
This commit is contained in:
parent
cd23fdf045
commit
41496571f8
@ -1,13 +1,13 @@
|
||||
local nvim_treesitter = require("nvim-treesitter.configs")
|
||||
local nvim_treesitter = require('nvim-treesitter.configs')
|
||||
|
||||
nvim_treesitter.setup({
|
||||
ensure_installed = {
|
||||
"norg",
|
||||
'norg',
|
||||
},
|
||||
highlight = {
|
||||
enable = true,
|
||||
additional_vim_regex_highlighting = true,
|
||||
disable = { "yaml" },
|
||||
disable = { 'yaml' },
|
||||
},
|
||||
matchup = {
|
||||
enable = true,
|
||||
@ -18,7 +18,4 @@ nvim_treesitter.setup({
|
||||
yati = {
|
||||
enable = true,
|
||||
},
|
||||
markid = {
|
||||
enable = true,
|
||||
},
|
||||
})
|
||||
|
@ -186,9 +186,6 @@ return packer.startup({
|
||||
use({
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
run = ":TSUpdate",
|
||||
requires = {
|
||||
"David-Kunz/markid",
|
||||
},
|
||||
config = function()
|
||||
require("plugins.configs.treesitter")
|
||||
end,
|
||||
@ -749,13 +746,13 @@ return packer.startup({
|
||||
})
|
||||
|
||||
-- Highlight argument definitions and usages
|
||||
-- use({
|
||||
-- "m-demare/hlargs.nvim",
|
||||
-- requires = { "nvim-treesitter/nvim-treesitter" },
|
||||
-- config = function()
|
||||
-- require("hlargs").setup({})
|
||||
-- end,
|
||||
-- })
|
||||
use({
|
||||
"m-demare/hlargs.nvim",
|
||||
requires = { "nvim-treesitter/nvim-treesitter" },
|
||||
config = function()
|
||||
require("hlargs").setup({})
|
||||
end,
|
||||
})
|
||||
|
||||
-- Vim Latex Support
|
||||
use({
|
||||
|
Loading…
Reference in New Issue
Block a user