added carbon theme

This commit is contained in:
arnold-lei 2023-09-25 22:14:48 -06:00
parent c74e696c0f
commit dd35967f31
1 changed files with 20 additions and 9 deletions

View File

@ -104,14 +104,25 @@ require('lazy').setup({
},
{
"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
"nyoom-engineering/oxocarbon.nvim",
config = function()
-- load the colorscheme here
vim.cmd([[colorscheme tokyonight]])
vim.cmd([[colorscheme oxocarbon]])
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
'nvim-lualine/lualine.nvim',
@ -119,9 +130,9 @@ require('lazy').setup({
opts = {
options = {
icons_enabled = false,
theme = 'onedark',
-- component_separators = '|',
-- section_separators = '',
theme = 'auto',
component_separators = '|',
section_separators = '',
},
},
},