Nvim is now running Lazy as its plugin Manager.

New keymaps
Nvim.leap instead of flash
This commit is contained in:
Thomas Naderer
2025-07-07 15:31:56 +02:00
parent e715400806
commit 83b031dfe5
10 changed files with 808 additions and 244 deletions

View 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
}