From 2218ce9db8d84c5ae5e2c826f8c297ddf6a36f99 Mon Sep 17 00:00:00 2001 From: titusdmoore Date: Fri, 3 Nov 2023 20:07:57 -0400 Subject: [PATCH] Changed theme --- init.lua | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/init.lua b/init.lua index 2e89a693..7e5959d5 100644 --- a/init.lua +++ b/init.lua @@ -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 - 'navarasu/onedark.nvim', - priority = 1000, - config = function() - vim.cmd.colorscheme 'onedark' + "tiagovla/tokyodark.nvim", + opts = { + -- custom options here + }, + config = function(_, opts) + require("tokyodark").setup(opts) -- calling setup is optional + vim.cmd [[colorscheme tokyodark]] end, }, + -- { + -- -- Theme inspired by Atom + -- 'navarasu/onedark.nvim', + -- priority = 1000, + -- config = function() + -- vim.cmd.colorscheme 'onedark' + -- end, + -- }, + { -- Set lualine as statusline 'nvim-lualine/lualine.nvim', @@ -159,7 +165,7 @@ require('lazy').setup({ opts = { options = { icons_enabled = false, - theme = 'onedark', + theme = 'tokyodark', component_separators = '|', section_separators = '', },