From 24dfe86e6ec49333ff6f90b5e1b7f0dd428a6bd7 Mon Sep 17 00:00:00 2001 From: Taken Date: Mon, 4 Sep 2023 09:51:36 +0200 Subject: [PATCH] Added new main colorscheme --- lua/taken/plugins/colors.lua | 53 ++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 11 deletions(-) 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, + }, }