blob: 8a2b2da6fd0431f6d5b75c2836809aac9016a594 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
local colorscheme = "legacy_slate"
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not status_ok then
vim.notify("colorscheme " .. colorscheme .. " not found!")
return
end
-- Set Popup menu colors
--highlight Pmenu ctermbg=White ctermfg=Black guibg=Gray
vim.cmd("highlight Pmenu ctermbg=gray guibg=gray")
-- Set Parentheses matching to Magenta so that it's actually visible
vim.cmd("highlight MatchParen ctermbg=none ctermfg=magenta guibg=none guifg=magenta")
|