add: custom config material

This commit is contained in:
asep komarudin 2024-03-09 16:16:10 +07:00
parent d7df5843dc
commit fce7629d3c
3 changed files with 38 additions and 2 deletions

View file

@ -286,12 +286,48 @@ return {
"marko-cerovac/material.nvim",
enabled = material,
config = function()
local colors = require("material.colors")
vim.g.material_style = material_style
require("material").setup({
lualine_style = "stealth",
disable = {
background = transparent,
},
plugins = { -- Uncomment the plugins that you use to highlight them
-- Available plugins:
"dap",
-- "dashboard",
-- "eyeliner",
"fidget",
-- "flash",
-- "gitsigns",
-- "harpoon",
-- "hop",
"illuminate",
"indent-blankline",
-- "lspsaga",
"mini",
-- "neogit",
-- "neotest",
-- "neo-tree",
-- "neorg",
"noice",
"nvim-cmp",
"nvim-navic",
"nvim-tree",
"nvim-web-devicons",
-- "rainbow-delimiters",
-- "sneak",
"telescope",
-- "trouble",
"which-key",
"nvim-notify",
},
custom_highlights = {
BufferLineFill = { bg = colors.bg },
StatusLine = { fg = "#f8f8f2", bg = colors.bg },
StatusLineTerm = { fg = "#f8f8f2", bg = colors.bg },
},
})
end,
},