diff options
Diffstat (limited to 'lua/kickstart/plugins/theme.lua')
-rw-r--r-- | lua/kickstart/plugins/theme.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/kickstart/plugins/theme.lua b/lua/kickstart/plugins/theme.lua new file mode 100644 index 0000000..794aa4d --- /dev/null +++ b/lua/kickstart/plugins/theme.lua @@ -0,0 +1,10 @@ +return { + "folke/tokyonight.nvim", + lazy = false, + priority = 1000, + opts = {}, + config = function() + vim.cmd.colorscheme 'tokyonight-storm' + end, +} + |