Clean up vscode
This commit is contained in:
+3
-29
@@ -14,39 +14,13 @@
|
||||
limitations under the License.
|
||||
]]
|
||||
|
||||
-- Conservative style of the standard Visual Studio
|
||||
-- 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 vscode = require("vscode")
|
||||
|
||||
-- local c = require('vscode.colors')
|
||||
require("vscode").setup({
|
||||
vscode.setup({
|
||||
style = "dark",
|
||||
|
||||
-- Enable transparent background
|
||||
transparent = false,
|
||||
|
||||
-- Enable italic comment
|
||||
italic_comments = false,
|
||||
|
||||
-- Disable nvim-tree background color
|
||||
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()
|
||||
|
||||
Reference in New Issue
Block a user