refreshed vim
This commit is contained in:
@@ -9,17 +9,20 @@ return {
|
||||
"LazyVim/LazyVim",
|
||||
-- lazy = false,
|
||||
opts = {
|
||||
-- colorscheme = "tokyonight-storm",
|
||||
-- colorscheme = "dracula-dark",
|
||||
colorscheme = "tokyonight-storm",
|
||||
-- colorscheme = "tokyonight-night",
|
||||
-- colorscheme = "tokyonight-moon",
|
||||
-- colorscheme = "tokyonight-day",
|
||||
colorscheme = "catppuccin",
|
||||
-- colorscheme = "catppuccin",
|
||||
-- colorscheme = "catppuccin-macchiato",
|
||||
-- colorscheme = "catppuccin-mocha",
|
||||
-- colorscheme = "catppuccin-frappe",
|
||||
-- colorscheme = "catppuccin-latte",
|
||||
-- colorscheme = "material",
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
"catppuccin/nvim",
|
||||
-- lazy = false,
|
||||
@@ -42,4 +45,20 @@ return {
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
"marko-cerovac/material.nvim",
|
||||
priority = 1000,
|
||||
opts = {
|
||||
contrast = {
|
||||
terminal = false,
|
||||
sidebars = false,
|
||||
floating_windows = false,
|
||||
cursor_line = false,
|
||||
},
|
||||
style = "deep ocean", -- Verfügbare Stile: "darker", "lighter", "oceanic", "palenight", "deep ocean"
|
||||
transparent = true, -- Macht den Hintergrund transparent
|
||||
lualine_style = "default", -- oder "stealth" für einen minimalistischeren Look
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
@@ -24,6 +24,7 @@ return {
|
||||
"make",
|
||||
"markdown",
|
||||
"markdown_inline",
|
||||
"php",
|
||||
"proto",
|
||||
"python",
|
||||
"query",
|
||||
@@ -45,6 +46,31 @@ return {
|
||||
autotag = {
|
||||
enable = true,
|
||||
},
|
||||
-- Hier kommt die neue Konfiguration
|
||||
indent = { enable = true },
|
||||
highlight = {
|
||||
enable = true,
|
||||
additional_vim_regex_highlighting = false,
|
||||
},
|
||||
-- Operator-Hervorhebung
|
||||
playground = {
|
||||
enable = true,
|
||||
disable = {},
|
||||
updatetime = 25,
|
||||
persist_queries = false,
|
||||
keybindings = {
|
||||
toggle_query_editor = "o",
|
||||
toggle_hl_groups = "i",
|
||||
toggle_injected_languages = "t",
|
||||
toggle_anonymous_nodes = "a",
|
||||
toggle_language_display = "I",
|
||||
focus_language = "f",
|
||||
unfocus_language = "F",
|
||||
update = "R",
|
||||
goto_node = "<cr>",
|
||||
show_help = "?",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
|
||||
@@ -1,25 +1,21 @@
|
||||
return {
|
||||
-- Modify which-key keys
|
||||
{
|
||||
"folke/which-key.nvim",
|
||||
opts = function()
|
||||
require("which-key").register({
|
||||
["<leader>t"] = {
|
||||
name = "+test",
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
defaults = {
|
||||
mappings = {
|
||||
{ "<leader>t", { name = "+test" } },
|
||||
{ "<leader>gb", { name = "+blame" } },
|
||||
{ "<leader>gd", { name = "+diffview" } },
|
||||
{ "<leader>h", { name = "+harpoon" } },
|
||||
{ "<leader>r", { name = "+run" } },
|
||||
},
|
||||
["<leader>gb"] = {
|
||||
name = "+blame",
|
||||
},
|
||||
["<leader>gd"] = {
|
||||
name = "+diffview",
|
||||
},
|
||||
["<leader>h"] = {
|
||||
name = "+harpoon",
|
||||
},
|
||||
["<leader>r"] = {
|
||||
name = "+run",
|
||||
},
|
||||
})
|
||||
},
|
||||
},
|
||||
config = function(_, opts)
|
||||
local wk = require("which-key")
|
||||
wk.setup(opts)
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user