diff options
-rw-r--r-- | lazy-lock.json | 6 | ||||
-rw-r--r-- | lua/my_theme.lua | 23 |
2 files changed, 16 insertions, 13 deletions
diff --git a/lazy-lock.json b/lazy-lock.json index 10332c1..a0b89ae 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -5,14 +5,14 @@ "lazy.nvim": { "branch": "main", "commit": "57cce98dfdb2f2dd05a0567d89811e6d0505e13b" }, "lualine.nvim": { "branch": "master", "commit": "84ffb80e452d95e2c46fa29a98ea11a240f7843e" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "a8d5db8f227b9b236d1c54a9c6234bc033825ce7" }, - "mason.nvim": { "branch": "main", "commit": "e5bb23fa9ee2a2047368b05f262de6b2152d7a27" }, + "mason.nvim": { "branch": "main", "commit": "3fb2be48864b7850a26c54c04cedb54e95dcdf3f" }, "nvim-cmp": { "branch": "main", "commit": "777450fd0ae289463a14481673e26246b5e38bf2" }, "nvim-lspconfig": { "branch": "master", "commit": "10fa01d553ce10646350461ac5ddc71f189e9d1a" }, - "nvim-treesitter": { "branch": "master", "commit": "a82501244a75b3d59cdc42496e5ad841f31e4d6d" }, + "nvim-treesitter": { "branch": "master", "commit": "ac4020c70722337c326bf65b645b162ee6e1796b" }, "nvim-treesitter-textobjects": { "branch": "master", "commit": "8673926519ea61069f9c1366d1ad1949316d250e" }, "nvim-web-devicons": { "branch": "master", "commit": "defb7da4d3d313bf31982c52fd78e414f02840c9" }, "plenary.nvim": { "branch": "master", "commit": "9ac3e9541bbabd9d73663d757e4fe48a675bb054" }, "telescope-fzf-native.nvim": { "branch": "main", "commit": "580b6c48651cabb63455e97d7e131ed557b8c7e2" }, "telescope.nvim": { "branch": "master", "commit": "c1a2af0af69e80e14e6b226d3957a064cd080805" }, - "vscode.nvim": { "branch": "main", "commit": "6c46cdf22b31e7cbd2558c3bafeceeadc41dc89e" } + "vscode.nvim": { "branch": "main", "commit": "34d1ec135319cd260940ce380f1fb73c047920ea" } }
\ No newline at end of file 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" }) + |