dotfiles/neovim/after/plugin/color.lua

12 lines
184 B
Lua
Raw Normal View History

2022-07-25 04:23:48 +02:00
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', {
2022-07-26 16:00:50 +02:00
bg = '#222222',
2022-07-25 04:23:48 +02:00
})