summaryrefslogtreecommitdiffstats
path: root/after/plugin/colorscheme.lua
blob: 039f926bda91e8af8c1ad550c48d2bb423081b74 (plain) (blame)
1
2
3
4
5
if vim.fn.has("termguicolors") and not os.getenv("TERM") ~= "linux" then
  vim.cmd("colorscheme mellow")
else
  vim.cmd("colorscheme default")
end