diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2023-04-11 20:02:56 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2023-04-11 20:02:56 +0200 |
commit | 994a2eae64213ebc78d54be2b8701055b1c6c8a4 (patch) | |
tree | 0e802ba5853d94b5f22a4d2952c7b64881729e63 /lua | |
parent | 2fd258d372259ad1667386b7e4c1dd32c2ebe6e7 (diff) |
Fix theme
Diffstat (limited to 'lua')
-rw-r--r-- | lua/my_theme.lua | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/lua/my_theme.lua b/lua/my_theme.lua index f879e0c..68821b0 100644 --- a/lua/my_theme.lua +++ b/lua/my_theme.lua @@ -2,21 +2,21 @@ vim.o.background = "dark" local c = require("vscode.colors").get_colors() require("vscode").setup({ - style = "dark", - group_overrides = { - ["@punctuation.bracket"] = { fg = c.vscFront }, - }, + style = "dark", + group_overrides = { + ["@punctuation.bracket"] = { fg = c.vscFront }, + }, }) vim.cmd.colorscheme("vscode") require("lualine").setup({ - options = { - theme = "vscode", - icons_enabled = false, - component_separators = "|", - section_separators = "", - }, + options = { + theme = "vscode", + icons_enabled = false, + component_separators = "|", + section_separators = "", + }, }) vim.o.guifont = "Cascadia Mono:h11" @@ -29,3 +29,6 @@ my_switch_theme = function() require("vscode").load("dark") end end + +vim.api.nvim_set_hl(0, "@lsp.type.class.cpp", { link = "@type" }) + |