Add Alduin color-scheme

This commit is contained in:
Arkaprabha Chakraborty
2023-07-14 03:33:14 +05:30
parent f00e435d4e
commit 75ee2b7286
2 changed files with 7 additions and 1 deletions

View File

@@ -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

View File

@@ -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")