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, +}