summaryrefslogtreecommitdiff
path: root/lua/user/colorscheme.lua
blob: 57df9ae6ce21fc3de1b5267b6f2267d8bda9f6c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
local colorscheme = "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")