feat: enhance theme customization with additional plugin support

This commit is contained in:
2024-08-29 14:47:12 -04:00
parent b32cfaa517
commit 25307d8d20
+24
View File
@@ -1,6 +1,8 @@
-- ╭─────────────────────────────────────────────────────────╮ -- ╭─────────────────────────────────────────────────────────╮
-- │ Themes │ -- │ Themes │
-- ╰─────────────────────────────────────────────────────────╯ -- ╰─────────────────────────────────────────────────────────╯
local data = require("data")
return { return {
{ -- Tokyonight { -- Tokyonight
"folke/tokyonight.nvim", "folke/tokyonight.nvim",
@@ -20,6 +22,27 @@ return {
dark = "frappe", dark = "frappe",
}, },
integrations = { integrations = {
native_lsp = {
enabled = true,
virtual_text = {
errors = { "italic" },
hints = { "italic" },
warnings = { "italic" },
information = { "italic" },
ok = { "italic" },
},
underlines = {
errors = { "underline" },
hints = { "underline" },
warnings = { "underline" },
information = { "underline" },
ok = { "underline" },
},
inlay_hints = {
background = true,
},
},
dadbod_ui = true,
indent_blankline = { indent_blankline = {
enabled = true, enabled = true,
scope_color = "mauve", scope_color = "mauve",
@@ -33,6 +56,7 @@ return {
}, },
neotree = true, neotree = true,
noice = true, noice = true,
notify = true,
nvim_surround = true, nvim_surround = true,
octo = true, octo = true,
overseer = true, overseer = true,