Clean up vscode

This commit is contained in:
2023-09-03 23:41:33 +02:00
parent 60bff6bc38
commit 55b46c8676
+3 -29
View File
@@ -14,39 +14,13 @@
limitations under the License. limitations under the License.
]] ]]
-- Conservative style of the standard Visual Studio local vscode = require("vscode")
-- with reduced number of colors
-- vim.g.codedark_conservative = 1
-- vim.g.vscode_style = "dark"
-- vim.g.vscode_transparency = 0
-- vim.g.vscode_italic_comment = 1
-- vim.g.vscode_disable_nvimtree_bg = true
-- vim.fn.execute("colorscheme vscode")
-- local c = require('vscode.colors') vscode.setup({
require("vscode").setup({
style = "dark", style = "dark",
-- Enable transparent background
transparent = false, transparent = false,
-- Enable italic comment
italic_comments = false, italic_comments = false,
-- Disable nvim-tree background color
disable_nvimtree_bg = false, disable_nvimtree_bg = false,
-- Override colors (see ./lua/vscode/colors.lua)
-- color_overrides = {
-- vscLineNumber = '#FFFFFF',
-- },
-- Override highlight groups (see ./lua/vscode/theme.lua)
group_overrides = {
-- this supports the same val table as vim.api.nvim_set_hl
-- use colors from this colorscheme by requiring vscode.colors!
-- Cursor = { fg=c.vscDarkBlue, bg=c.vscLightGreen, bold=true },
},
}) })
require("vscode").load() vscode.load()