nvim-config/lua/user/colorscheme.lua
2023-07-14 17:40:38 +03:00

20 lines
529 B
Lua

local colorscheme = "vscode"
local vim_cmd_status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not vim_cmd_status_ok then
return
end
local vscode_status_ok, vscode_theme = pcall(require, "vscode")
if not vscode_status_ok then
return
end
vscode_theme.setup {
style = "dark", -- Alternatively set style in setup
transparent = false, -- Enable transparent background
italic_comments = true, -- Enable italic comment
disable_nvimtree_bg = false, -- Disable nvim-tree background color
}
vscode_theme.load()