Files
neovim-config/lua/plugins/hlchunk.lua
T
rootiest 2807567e34 🖍️ Plugin and Theme Formatting
- Formatting cleanup
2024-07-12 21:39:48 -04:00

22 lines
525 B
Lua

-- -----------------------------------------------------------------------------
-- --------------------------------- hlchunk -----------------------------------
-- -----------------------------------------------------------------------------
return {
"shellRaining/hlchunk.nvim",
lazy = false,
config = function()
require("hlchunk").setup({
chunk = {
style = {
{ fg = "#90FDA9" },
},
enable = true,
},
indent = {
enable = true,
},
})
end,
}