index — dotfiles @ f470ff39e653eea2ea17d8dcc8c9c1bf1185a4ff

my dotfiles

nvim/.config/nvim/lua/plugins/appearance.lua (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
return {

    {
        "nvim-treesitter/nvim-treesitter",
        build = ":TSUpdate",
        config = function ()
          require("nvim-treesitter.configs").setup({
              ensure_installed = { "c", "lua", "vim", "rust", "toml", "latex" },
              sync_install = false,
              highlight = { enable = true },
              indent = { enable = true },
            })
        end
    },

    {
        "norcalli/nvim-colorizer.lua",
        config = function ()
            require'colorizer'.setup()
        end
    },

    {
        "lukas-reineke/indent-blankline.nvim",
        main = "ibl",
        opts = {}
    },

}