summaryrefslogtreecommitdiff
path: root/neovim/.config/nvim/lua/config/colourscheme.lua
blob: 56ae5b610f746fa382622e49eb9b467e33094e4d (plain)
1
2
3
4
5
6
local colorscheme = "onedark"
vim.o.background = "light"
local ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not ok then
  vim.notify("colorscheme " .. colorscheme .. " not found!")
end