diff options
-rw-r--r-- | lua/lvim/plugins.lua | 11 | ||||
-rw-r--r-- | snapshots/default.json | 4 |
2 files changed, 7 insertions, 8 deletions
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", diff --git a/snapshots/default.json b/snapshots/default.json index f7880e02..2a28e147 100644 --- a/snapshots/default.json +++ b/snapshots/default.json @@ -83,8 +83,8 @@ "nvim-web-devicons": { "commit": "2d02a56" }, - "onedarker.nvim": { - "commit": "b00dd21" + "tokyonight.nvim": { + "commit": "48fc163" }, "packer.nvim": { "commit": "6afb674" |