Create color.lua
This commit is contained in:
parent
c441d12430
commit
8c98a88048
1 changed files with 11 additions and 0 deletions
11
neovim/after/plugin/color.lua
Normal file
11
neovim/after/plugin/color.lua
Normal 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'
|
||||
})
|
Loading…
Reference in a new issue