Create color.lua

This commit is contained in:
Rawley Fowler 2022-07-24 20:23:48 -06:00 committed by GitHub
parent c441d12430
commit 8c98a88048
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,11 @@
vim.opt.background = 'dark'
vim.cmd('colorscheme cosme')
vim.g.airline_theme = 'cosme'
local cl = function(t, o)
vim.api.nvim_set_hl(0, t, o)
end
cl('LineNr', {
bg = '#444444'
})