summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/user/beautiful.lua
blob: 6af5f98dfc4012ac9aac73b5705f9893ec48f62e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
-- this file contains configuration for colorschemes e.t.c 

vim.cmd("colorscheme default")

local colorscheme = "habamax"
-- local colorscheme = "evening"
local status, _retval = pcall(vim.cmd, "colo " .. colorscheme)
if not status then
	vim.notify("Error: colorscheme \"" .. colorscheme .. "\" not found!")
	return -- what the fuck lua where does this return lmao
end