add hlchunk

This commit is contained in:
Eric Olerud 2024-10-02 20:06:59 -04:00
parent 28cee44bf2
commit 15e73b7600
2 changed files with 12 additions and 1 deletions

View File

@ -806,7 +806,7 @@ require('lazy').setup({
'nvim-treesitter/nvim-treesitter', 'nvim-treesitter/nvim-treesitter',
build = ':TSUpdate', build = ':TSUpdate',
opts = { opts = {
ensure_installed = { 'bash', 'c', 'html', 'lua', 'luadoc', 'markdown', 'markdown_inline', 'vim', 'vimdoc' }, ensure_installed = { 'bash', 'c', 'html', 'lua', 'luadoc', 'markdown', 'markdown_inline', 'vim', 'vimdoc', 'toml', 'css' },
-- Autoinstall languages that are not installed -- Autoinstall languages that are not installed
auto_install = true, auto_install = true,
highlight = { highlight = {

View File

@ -0,0 +1,11 @@
return {
'shellRaining/hlchunk.nvim',
event = { 'BufReadPre', 'BufNewFile' },
config = function()
require('hlchunk').setup {
chunk = {
enable = true,
},
}
end,
}