This commit is contained in:
thomasabishop 2024-03-10 15:17:19 +00:00
parent ba9a20266a
commit 04e81897cf
3 changed files with 8 additions and 4 deletions

View file

@ -1,4 +1,4 @@
local status, _ = pcall(vim.cmd, "colorscheme gruvbox") local status, _ = pcall(vim.cmd, "colorscheme gruvbox-material")
if not status then if not status then
print("Colorscheme not found!") -- print error if colorscheme not installed print("Colorscheme not found!") -- print error if colorscheme not installed
return return

View file

@ -42,7 +42,7 @@ return packer.startup(function(use)
requires = { "MunifTanjim/nui.nvim", "rcarriga/nvim-notify" }, requires = { "MunifTanjim/nui.nvim", "rcarriga/nvim-notify" },
}) })
use({ "epwalsh/obsidian.nvim", requires = { "nvim-lua/plenary.nvim" } }) use({ "epwalsh/obsidian.nvim", requires = { "nvim-lua/plenary.nvim" } })
use("ellisonleao/gruvbox.nvim") -- use("ellisonleao/gruvbox.nvim")
use("sainnhe/gruvbox-material") use("sainnhe/gruvbox-material")
use("kdheepak/lazygit.nvim") use("kdheepak/lazygit.nvim")
use("zk-org/zk-nvim") use("zk-org/zk-nvim")

View file

@ -34,7 +34,7 @@ button {
#workspaces button.active { #workspaces button.active {
color: #282828; color: #282828;
background-color: #98971a; background-color: #98971a;
border: 2px solid #504945; border: 2px solid #b8bb26;
} }
#workspaces button { #workspaces button {
@ -261,7 +261,7 @@ button {
#custom-timewarrior.active { #custom-timewarrior.active {
background-color: #98971a; background-color: #98971a;
color: #282828; color: #282828;
border: 2px solid #504945; border: 2px solid #b8bb26;
} }
#custom-timewarrior.inactive { #custom-timewarrior.inactive {
@ -275,3 +275,7 @@ button {
background-color: #3c3836; background-color: #3c3836;
border: 2px solid #504945; border: 2px solid #504945;
} }
#custom_notification.active {
border: 2px solid #b8bb26;
}