colorscheme picker

This commit is contained in:
Zacharias-Brohn
2025-11-19 22:47:58 +01:00
parent fb6302a74d
commit 018d32bfbb
6 changed files with 115 additions and 34 deletions
+50
View File
@@ -0,0 +1,50 @@
require("gruvbox").setup({
variant = "hard",
dark_variant = "medium",
dim_inactive_windows = false,
extend_background_behind_borders = false,
enable = {
terminal = true,
legacy_highlights = true,
migrations = true,
},
styles = {
bold = true,
italic = true,
transparency = false,
},
groups = {
border = "gray",
link = "purple_lite",
panel = "bg_second",
error = "red_lite",
hint = "aqua_lite",
info = "blue_lite",
ok = "green_lite",
warn = "yellow_lite",
note = "yellow_dark",
todo = "aqua_dark",
git_add = "green_dark",
git_change = "yellow_dark",
git_delete = "red_dark",
git_dirty = "orange_dark",
git_ignore = "gray",
git_merge = "purple_dark",
git_rename = "blue_dark",
git_stage = "purple_dark",
git_text = "yellow_lite",
git_untracked = "bg2",
h1 = "red_dark",
h2 = "yellow_dark",
h3 = "green_dark",
h4 = "aqua_dark",
h5 = "blue_dark",
h6 = "purple_dark",
},
})
-26
View File
@@ -1,26 +0,0 @@
require("huez").setup({
path = vim.fs.normalize(vim.fn.stdpath("data") --[[@as string]]) .. "/huez",
fallback = "default",
suppress_messages = true,
theme_config_module = nil,
exclude = { "desert", "evening", "industry", "koehler", "morning", "murphy", "pablo", "peachpuff", "ron", "shine", "slate", "torte", "zellner", "blue", "darkblue", "delek", "quiet", "elflord", "habamax", "lunaperche", "zaibatsu", "wildcharm", "sorbet", "vim", },
background = "dark",
picker = {
themes = {
layout = "right",
opts = {},
},
favorites = {
layout = "right",
opts = {},
},
live = {
layout = "right",
opts = {},
},
ensured = {
layout = "right",
opts = {},
},
},
})
+26
View File
@@ -0,0 +1,26 @@
require('refactoring').setup({
prompt_func_return_type = {
go = true,
java = true,
cpp = true,
c = true,
h = true,
hpp = true,
cxx = true,
},
prompt_func_param_type = {
go = true,
java = true,
cpp = true,
c = true,
h = true,
hpp = true,
cxx = true,
},
printf_statements = {},
print_var_statements = {},
show_success_message = true, -- shows a message with information about the refactor on success
-- i.e. [Refactor] Inlined 3 variable occurrences
})
+7 -1
View File
@@ -1 +1,7 @@
require("telescope").setup ({})
require("telescope").setup ({
pickers = {
colorscheme = {
enable_preview = true,
}
}
})