Change colorscheme plugin to sonokai
This commit is contained in:
parent
b9b81b8aa7
commit
80b5401bff
16
init.lua
16
init.lua
|
@ -202,15 +202,18 @@ require('lazy').setup({
|
||||||
|
|
||||||
{
|
{
|
||||||
-- Theme inspired by Atom
|
-- Theme inspired by Atom
|
||||||
'navarasu/onedark.nvim',
|
'sainnhe/sonokai',
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
lazy = false,
|
lazy = false,
|
||||||
config = function()
|
config = function()
|
||||||
require('onedark').setup {
|
-- require('onedark').setup {
|
||||||
-- Set a style preset. 'dark' is default.
|
-- -- Set a style preset. 'dark' is default.
|
||||||
style = 'dark', -- dark, darker, cool, deep, warm, warmer, light
|
-- style = 'dark', -- dark, darker, cool, deep, warm, warmer, light
|
||||||
}
|
-- }
|
||||||
require('onedark').load()
|
-- require('onedark').load()
|
||||||
|
vim.g.sonokai_style = 'maia'
|
||||||
|
vim.g.sonokai_better_performance = 1
|
||||||
|
vim.cmd([[colorscheme sonokai]])
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -222,6 +225,7 @@ require('lazy').setup({
|
||||||
options = {
|
options = {
|
||||||
icons_enabled = false,
|
icons_enabled = false,
|
||||||
theme = 'auto',
|
theme = 'auto',
|
||||||
|
-- theme = 'sonokai',
|
||||||
component_separators = '|',
|
component_separators = '|',
|
||||||
section_separators = '',
|
section_separators = '',
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue