56 lines
1.2 KiB
Lua
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
|
|
} |