Files
dotfiles/nvim/lua/plugins/material.lua
Thomas Naderer 83b031dfe5 Nvim is now running Lazy as its plugin Manager.
New keymaps
Nvim.leap instead of flash
2025-07-07 15:31:56 +02:00

56 lines
1.2 KiB
Lua

return {
"marko-cerovac/material.nvim",
priority = 1000,
config = function()
require('material').setup({
contrast = {
terminal = false,
sidebars = false,
floating_windows = false,
cursor_line = false,
lsp_virtual_text = false,
non_current_windows = false,
filetypes = {},
},
styles = {
comments = { italic = true },
strings = {},
keywords = {},
functions = {},
variables = {},
operators = {},
types = {},
},
plugins = {
"dap",
"gitsigns",
"indent-blankline",
"lspsaga",
"mini",
"neo-tree",
"nvim-cmp",
"nvim-navic",
"nvim-tree",
"nvim-web-devicons",
"telescope",
"trouble",
"which-key",
},
disable = {
colored_cursor = false,
borders = false,
background = false,
term_colors = false,
eob_lines = false
},
high_visibility = {
lighter = false,
darker = false
},
lualine_style = "default",
async_loading = true,
custom_colors = nil,
custom_highlights = {},
})
end
}