diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua new file mode 100644 index 0000000..7fc901e --- /dev/null +++ b/lua/plugins/colorscheme.lua @@ -0,0 +1,19 @@ +return { + { + "folke/tokyonight.nvim", + lazy = true, + opts = { + style = "moon", + on_colors = function(colors) + colors.border = colors.purple + end, + }, + }, + + { + "LazyVim/LazyVim", + opts = { + colorscheme = "tokyonight", + }, + }, +}