diff --git a/lua/taken/plugins/colors.lua b/lua/taken/plugins/colors.lua index a9b5639..f5e14e0 100644 --- a/lua/taken/plugins/colors.lua +++ b/lua/taken/plugins/colors.lua @@ -1,23 +1,54 @@ return { + { + "bluz71/vim-nightfly-colors", + name = "nightfly", + priority = 1000, + }, { "catppuccin/nvim", name = "catppuccin", priority = 1000, + lazy = true, config = function() local catppuccin = require("catppuccin") catppuccin.setup({ - integrations = { - notify = true, - mason = true, - }, + integrations = { notify = true, mason = true }, }) end, }, - { "folke/tokyonight.nvim", priority = 1000, lazy = true }, - { "Mofiqul/dracula.nvim", priority = 1000, lazy = true }, - { "roflolilolmao/oceanic-next.nvim", priority = 1000, lazy = true }, - { "olimorris/onedarkpro.nvim", priority = 1000, lazy = true }, - { "NTBBloodbath/doom-one.nvim", priority = 1000, lazy = true }, - { "shaunsingh/moonlight.nvim", priority = 1000, lazy = true }, - { "kvrohit/mellow.nvim", priority = 1000, lazy = true }, + { + "folke/tokyonight.nvim", + priority = 1000, + lazy = true, + }, + { + "Mofiqul/dracula.nvim", + priority = 1000, + lazy = true, + }, + { + "roflolilolmao/oceanic-next.nvim", + priority = 1000, + lazy = true, + }, + { + "olimorris/onedarkpro.nvim", + priority = 1000, + lazy = true, + }, + { + "NTBBloodbath/doom-one.nvim", + priority = 1000, + lazy = true, + }, + { + "shaunsingh/moonlight.nvim", + priority = 1000, + lazy = true, + }, + { + "kvrohit/mellow.nvim", + priority = 1000, + lazy = true, + }, }