summaryrefslogtreecommitdiff
path: root/lua/my_theme.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/my_theme.lua')
-rw-r--r--lua/my_theme.lua23
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" })
+