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", "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 = '',
}, },
}, },
}, },