added carbon theme
This commit is contained in:
parent
c74e696c0f
commit
dd35967f31
29
init.lua
29
init.lua
|
|
@ -103,15 +103,26 @@ require('lazy').setup({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"folke/tokyonight.nvim",
|
"nyoom-engineering/oxocarbon.nvim",
|
||||||
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
|
||||||
priority = 1000, -- make sure to load this before all the other start plugins
|
|
||||||
config = function()
|
config = function()
|
||||||
-- load the colorscheme here
|
vim.cmd([[colorscheme oxocarbon]])
|
||||||
vim.cmd([[colorscheme tokyonight]])
|
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
-- Add in any other configuration;
|
||||||
|
-- event = foo,
|
||||||
|
-- config = bar
|
||||||
|
-- end,
|
||||||
},
|
},
|
||||||
|
-- {
|
||||||
|
-- "folke/tokyonight.nvim",
|
||||||
|
-- lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
||||||
|
-- priority = 1000, -- make sure to load this before all the other start plugins
|
||||||
|
-- config = function()
|
||||||
|
-- -- load the colorscheme here
|
||||||
|
-- vim.cmd([[colorscheme tokyonight]])
|
||||||
|
-- end,
|
||||||
|
-- },
|
||||||
{
|
{
|
||||||
-- Set lualine as statusline
|
-- Set lualine as statusline
|
||||||
'nvim-lualine/lualine.nvim',
|
'nvim-lualine/lualine.nvim',
|
||||||
|
|
@ -119,9 +130,9 @@ require('lazy').setup({
|
||||||
opts = {
|
opts = {
|
||||||
options = {
|
options = {
|
||||||
icons_enabled = false,
|
icons_enabled = false,
|
||||||
theme = 'onedark',
|
theme = 'auto',
|
||||||
-- component_separators = '|',
|
component_separators = '|',
|
||||||
-- section_separators = '',
|
section_separators = '',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue