dandxy89 / dotfiles

0 stars 0 forks source link

Plugin: shellRaining/hlchunk.nvim #7

Open dandxy89 opened 7 months ago

dandxy89 commented 7 months ago

May re-use.

--       ┏╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍┓
--       ╏                                                               ╏
--       ╏                            Chunky                             ╏
--       ╏                                                               ╏
--       ┗╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍┛

---@diagnostic disable: missing-fields
return {
    {
        "shellRaining/hlchunk.nvim",
        keys = { "<Leader>u" },
        event = "InsertEnter",
        opts = function()
            require("hlchunk").setup({
                blank = {
                    enable = true,
                    chars = {
                        " ",
                    },
                },
                indent = {
                    enable = true,
                    chars = {
                        " ",
                    },
                },
                chunk = {
                    style = "#00ffff",
                },
            })
        end,
    },
}