From e46df592dce5b9eb7488ffa7bbe74ed5bb6a952e Mon Sep 17 00:00:00 2001 From: Tilo K Date: Thu, 12 Mar 2026 17:51:06 +0100 Subject: [PATCH] feat: add tokyonight theme --- lua/custom/plugins/tokyonight.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lua/custom/plugins/tokyonight.lua diff --git a/lua/custom/plugins/tokyonight.lua b/lua/custom/plugins/tokyonight.lua new file mode 100644 index 0000000..b926018 --- /dev/null +++ b/lua/custom/plugins/tokyonight.lua @@ -0,0 +1,10 @@ +return { + 'tiagovla/tokyodark.nvim', + opts = { + -- custom options here + }, + config = function(_, opts) + require('tokyodark').setup(opts) -- calling setup is optional + vim.cmd [[colorscheme tokyodark]] + end, +}