nvim: use default gruvbox colourscheme

This commit is contained in:
thomasabishop 2024-04-09 17:20:42 +01:00
parent 73eb9366e2
commit c112e776ea
3 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
local status, _ = pcall(vim.cmd, "colorscheme gruvbox-material") local status, _ = pcall(vim.cmd, "colorscheme gruvbox")
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

@ -25,5 +25,5 @@ opt.formatoptions = "cro"
opt.backspace = "indent,eol,start" opt.backspace = "indent,eol,start"
opt.conceallevel = 0 opt.conceallevel = 0
-- vim.notify = require("notify") -- vim.notify = require("notify")
-- vim.g.gruvbox_material_background = "hard" -- vim.g.gruvbox_material_background = "medium"
vim.g.gruvbox_material_enable_bold = 1 vim.g.gruvbox_material_enable_bold = 1

View file

@ -41,8 +41,8 @@ return packer.startup(function(use)
-- "folke/noice.nvim", -- "folke/noice.nvim",
-- 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")