mirror of
https://github.com/He4eT/dotfiles.git
synced 2026-05-04 15:37:22 +00:00
nvim: desolate: isolate config
This commit is contained in:
parent
66e4b63e54
commit
200d0a7112
1 changed files with 18 additions and 18 deletions
|
|
@ -31,6 +31,24 @@ require('lazy').setup({
|
|||
'navarasu/onedark.nvim',
|
||||
{ -- Main colorscheme
|
||||
'He4eT/desolate.nvim',
|
||||
config = function()
|
||||
vim.g.desolate_h = 0
|
||||
vim.g.desolate_s = 0
|
||||
vim.g.desolate_l = 70
|
||||
vim.g.desolate_contrast = 120
|
||||
|
||||
vim.g.desolate_fg = '#cdcdcd'
|
||||
vim.g.desolate_bg = '#383838'
|
||||
|
||||
vim.g.desolate_constant = '#ffd700'
|
||||
vim.g.desolate_identifier = '#ffc812'
|
||||
vim.g.desolate_statement = '#ffffff'
|
||||
|
||||
vim.g.desolate_error = '#ff4242'
|
||||
vim.g.desolate_warning = '#ffad29'
|
||||
vim.g.desolate_success = '#74af68'
|
||||
vim.g.desolate_info = '#ffffff'
|
||||
end,
|
||||
dependencies = {
|
||||
'rktjmp/lush.nvim',
|
||||
},
|
||||
|
|
@ -220,24 +238,6 @@ vim.o.termguicolors = true
|
|||
-- Set dark background
|
||||
vim.o.background = 'dark'
|
||||
|
||||
-- Set colorscheme options
|
||||
vim.g.desolate_h = 0
|
||||
vim.g.desolate_s = 0
|
||||
vim.g.desolate_l = 70
|
||||
vim.g.desolate_contrast = 120
|
||||
|
||||
vim.g.desolate_fg = '#cdcdcd'
|
||||
vim.g.desolate_bg = '#383838'
|
||||
|
||||
vim.g.desolate_constant = '#ffd700'
|
||||
vim.g.desolate_identifier = '#ffc812'
|
||||
vim.g.desolate_statement = '#ffffff'
|
||||
|
||||
vim.g.desolate_error = '#ff4242'
|
||||
vim.g.desolate_warning = '#ffad29'
|
||||
vim.g.desolate_success = '#74af68'
|
||||
vim.g.desolate_info = '#ffffff'
|
||||
|
||||
-- Set colorscheme
|
||||
vim.cmd.colorscheme 'desolate'
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue