Nvim is now running Lazy as its plugin Manager.
New keymaps Nvim.leap instead of flash
This commit is contained in:
56
nvim/lua/plugins/material.lua
Normal file
56
nvim/lua/plugins/material.lua
Normal file
@@ -0,0 +1,56 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user