first commit
This commit is contained in:
parent
5bdde24dfb
commit
e3a11a0ba5
27 changed files with 890 additions and 952 deletions
15
lua/custom/plugins/gruvbox.lua
Normal file
15
lua/custom/plugins/gruvbox.lua
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
return { -- You can easily change to a different colorscheme.
|
||||
-- Change the name of the colorscheme plugin below, and then
|
||||
-- change the command in the config to whatever the name of that colorscheme is.
|
||||
--
|
||||
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
|
||||
'ellisonleao/gruvbox.nvim',
|
||||
priority = 1000, -- Make sure to load this before all the other start plugins.
|
||||
opts = {
|
||||
transparent_mode = true,
|
||||
},
|
||||
config = function()
|
||||
vim.o.background = 'dark' -- or "light" for light mode
|
||||
vim.cmd [[colorscheme gruvbox]]
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue