From 25307d8d2096ee8eb4f01d84aa6e75b9f6649f41 Mon Sep 17 00:00:00 2001 From: rootiest Date: Thu, 29 Aug 2024 14:47:12 -0400 Subject: [PATCH] feat: enhance theme customization with additional plugin support --- lua/plugins/themes.lua | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/lua/plugins/themes.lua b/lua/plugins/themes.lua index be4bbf5..dc24b01 100644 --- a/lua/plugins/themes.lua +++ b/lua/plugins/themes.lua @@ -1,6 +1,8 @@ -- ╭─────────────────────────────────────────────────────────╮ -- │ Themes │ -- ╰─────────────────────────────────────────────────────────╯ +local data = require("data") + return { { -- Tokyonight "folke/tokyonight.nvim", @@ -20,6 +22,27 @@ return { dark = "frappe", }, 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 = { enabled = true, scope_color = "mauve", @@ -33,6 +56,7 @@ return { }, neotree = true, noice = true, + notify = true, nvim_surround = true, octo = true, overseer = true,