diff options
| author | Chris Patti <feoh@feoh.org> | 2023-06-03 10:11:10 -0400 |
|---|---|---|
| committer | Chris Patti <feoh@feoh.org> | 2023-06-03 10:11:58 -0400 |
| commit | ef49ada08c0ff2d8c2abb41e1b5826c1b009b511 (patch) | |
| tree | d3d48f735274288daa93471272a5c4cf2a7c5d44 /nvim/lua/kickstart/plugins/theme.lua | |
| parent | 680cbcfa353885c9c02cfc6f829ab6891a3bb10d (diff) | |
| download | dots-ef49ada08c0ff2d8c2abb41e1b5826c1b009b511.tar.gz | |
Refactor theme and status line into their own file
Diffstat (limited to 'nvim/lua/kickstart/plugins/theme.lua')
| -rw-r--r-- | nvim/lua/kickstart/plugins/theme.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nvim/lua/kickstart/plugins/theme.lua b/nvim/lua/kickstart/plugins/theme.lua new file mode 100644 index 0000000..794aa4d --- /dev/null +++ b/nvim/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, +} + |