From 58280f30adc06423c5b4972257d19b7d33921d26 Mon Sep 17 00:00:00 2001 From: Christian Chiarulli Date: Mon, 19 Sep 2022 19:03:53 -0400 Subject: feat: new colorscheme tokyonight (#3041) --- lua/lvim/plugins.lua | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'lua/lvim/plugins.lua') diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index bd8f787d..3d2a2b83 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -15,17 +15,16 @@ local core_plugins = { end, }, { - "lunarvim/onedarker.nvim", - branch = "freeze", + "lunarvim/tokyonight.nvim", config = function() pcall(function() - if lvim and lvim.colorscheme == "onedarker" then - require("onedarker").setup() - lvim.builtin.lualine.options.theme = "onedarker" + if lvim and lvim.colorscheme == "tokyonight-night" then + require("tokyonight-night").setup() + lvim.builtin.lualine.options.theme = "tokyonight-night" end end) end, - disable = lvim.colorscheme ~= "onedarker", + disable = lvim.colorscheme ~= "tokyonight-night", }, { "rcarriga/nvim-notify", -- cgit v1.2.3