Changed theme

This commit is contained in:
titusdmoore 2023-11-03 20:07:57 -04:00
parent 590af61a7f
commit 2218ce9db8
1 changed files with 17 additions and 11 deletions

View File

@ -138,20 +138,26 @@ require('lazy').setup({
}, },
}, },
-- I want to be able to use this, TODO resolve
-- {
-- "nyoom-engineering/oxocarbon.nvim"
-- },
{ {
-- Theme inspired by Atom "tiagovla/tokyodark.nvim",
'navarasu/onedark.nvim', opts = {
priority = 1000, -- custom options here
config = function() },
vim.cmd.colorscheme 'onedark' config = function(_, opts)
require("tokyodark").setup(opts) -- calling setup is optional
vim.cmd [[colorscheme tokyodark]]
end, end,
}, },
-- {
-- -- Theme inspired by Atom
-- 'navarasu/onedark.nvim',
-- priority = 1000,
-- config = function()
-- vim.cmd.colorscheme 'onedark'
-- end,
-- },
{ {
-- Set lualine as statusline -- Set lualine as statusline
'nvim-lualine/lualine.nvim', 'nvim-lualine/lualine.nvim',
@ -159,7 +165,7 @@ require('lazy').setup({
opts = { opts = {
options = { options = {
icons_enabled = false, icons_enabled = false,
theme = 'onedark', theme = 'tokyodark',
component_separators = '|', component_separators = '|',
section_separators = '', section_separators = '',
}, },