From 75ee2b72868d82c6ac133ac3079f0e5d9255fe5f Mon Sep 17 00:00:00 2001 From: Arkaprabha Chakraborty Date: Fri, 14 Jul 2023 03:33:14 +0530 Subject: [PATCH] Add Alduin color-scheme --- lua/colorschemes.lua | 6 +++++- lua/plugins.lua | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lua/colorschemes.lua b/lua/colorschemes.lua index 2fbebf7..b187652 100644 --- a/lua/colorschemes.lua +++ b/lua/colorschemes.lua @@ -1,4 +1,4 @@ -local colorscheme = "gruvbox" -- Set colorscheme { gruvbox, onedark, catppuccin, nord, dracula } +local colorscheme = "alduin" -- Set colorscheme { gruvbox, onedark, catppuccin, nord, dracula } if colorscheme == "onedark" then -- Onedark Default Configuration @@ -153,6 +153,10 @@ if colorscheme == "everforest" then vim.cmd([[colorscheme everforest]]) end +if colorscheme == "alduin" then + vim.cmd([[colorscheme alduin]]) +end + if colorscheme == "dracula" then local ok, dracula = pcall(require, "dracula") if not ok then diff --git a/lua/plugins.lua b/lua/plugins.lua index f63b199..67a80e7 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -6,6 +6,8 @@ end packer.startup(function(use) -- Visible indentation use("lukas-reineke/indent-blankline.nvim") + + use("AlessandroYorba/Alduin") -- Git integration use("lewis6991/gitsigns.nvim")