Add nvim plugins

This commit is contained in:
Jan Eitzinger 2024-01-26 08:33:29 +01:00
parent 94b03f2b0c
commit ffd5e69cf6
2 changed files with 21 additions and 0 deletions

View File

@ -16,7 +16,9 @@ require("lazy").setup({
{ import = "lazyvim.plugins.extras.dap.core" },
{ import = "lazyvim.plugins.extras.lang.go" },
{ import = "lazyvim.plugins.extras.lang.json" },
{ import = "lazyvim.plugins.extras.lang.markdown" },
{ import = "lazyvim.plugins.extras.lang.clangd" },
{ import = "lazyvim.plugins.extras.lang.tex" },
-- import/override with your plugins
{ import = "plugins" },
},

View File

@ -7,4 +7,23 @@ return {
opts.sections.lualine_b = { { "branch", icon = "" } }
end,
},
{
"NvChad/nvim-colorizer.lua",
opts = function(_, opts)
opts.filetypes = {
"html",
"css",
"scss",
"javascript",
"typescript",
"typescriptreact",
"javascriptreact",
"lua",
}
opts.user_default_options = {
mode = "background",
tailwind = false, -- Enable tailwind colors
}
end,
},
}