nvim: use default gruvbox colourscheme
This commit is contained in:
parent
73eb9366e2
commit
c112e776ea
3 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
local status, _ = pcall(vim.cmd, "colorscheme gruvbox-material")
|
||||
local status, _ = pcall(vim.cmd, "colorscheme gruvbox")
|
||||
if not status then
|
||||
print("Colorscheme not found!") -- print error if colorscheme not installed
|
||||
return
|
||||
|
|
|
@ -25,5 +25,5 @@ opt.formatoptions = "cro"
|
|||
opt.backspace = "indent,eol,start"
|
||||
opt.conceallevel = 0
|
||||
-- vim.notify = require("notify")
|
||||
-- vim.g.gruvbox_material_background = "hard"
|
||||
-- vim.g.gruvbox_material_background = "medium"
|
||||
vim.g.gruvbox_material_enable_bold = 1
|
||||
|
|
|
@ -41,8 +41,8 @@ return packer.startup(function(use)
|
|||
-- "folke/noice.nvim",
|
||||
-- requires = { "MunifTanjim/nui.nvim", "rcarriga/nvim-notify" },
|
||||
-- })
|
||||
use({ "epwalsh/obsidian.nvim", requires = { "nvim-lua/plenary.nvim" } })
|
||||
-- use("ellisonleao/gruvbox.nvim")
|
||||
--use({ "epwalsh/obsidian.nvim", requires = { "nvim-lua/plenary.nvim" } })
|
||||
use("ellisonleao/gruvbox.nvim")
|
||||
use("sainnhe/gruvbox-material")
|
||||
use("kdheepak/lazygit.nvim")
|
||||
use("zk-org/zk-nvim")
|
||||
|
|
Loading…
Add table
Reference in a new issue