From 885819878ed097c506801207b26c987eb62c1962 Mon Sep 17 00:00:00 2001 From: Oliver Ladner Date: Tue, 20 Aug 2024 10:36:24 +0200 Subject: [PATCH] style(tokyonight): adjust colors --- lua/weeheavy/plugins/tokyonight.lua | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/lua/weeheavy/plugins/tokyonight.lua b/lua/weeheavy/plugins/tokyonight.lua index af252ed..e7af43a 100644 --- a/lua/weeheavy/plugins/tokyonight.lua +++ b/lua/weeheavy/plugins/tokyonight.lua @@ -10,21 +10,28 @@ return { local util = require("tokyonight.util") tokyonight.setup({ styles = { + -- See :help nvim_set_hl comments = { italic = true }, + --functions = { underdotted = true }, }, on_colors = function(colors) -- Brighten up comments a bit colors.comment = "#888fac" -- Better visible visual selection background color - colors.bg_visual = "#e82a86" + --colors.bg_visual = "#e82a86" + --colors.bg_visual = colors.teal end, on_highlights = function(hl, c) -- Brighter line numbers hl.LineNr = { fg = util.darken(c.dark5, 0.6), } + --hl.ColorColumn = { + -- bg = c.purple, + --} + -- Remove borders from Telescope windows - local prompt = "#4e3e6c" + local prompt = "#2d3149" hl.TelescopeNormal = { bg = c.bg_dark, fg = c.fg_dark,