dotfiles/neovim/after/plugin/color.lua

12 lines
183 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', {
bg = '#444444'
})