diff --git a/init.lua b/init.lua index 5a716928..47122640 100644 --- a/init.lua +++ b/init.lua @@ -103,15 +103,26 @@ 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 = '', }, }, },