blob: 5f0654db3b0baa89af3362edc6cfbdf41d31414b (
plain)
1
2
3
4
5
6
7
8
9
|
-- Neovim colorscheme.
local colorscheme = "default"
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not status_ok then
vim.notify("colorscheme " .. colorscheme .. " not found!")
return
end
|