mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
update
This commit is contained in:
parent
c5cab09324
commit
c4fe7d778f
3 changed files with 36 additions and 29 deletions
|
@ -12,6 +12,7 @@ return {
|
|||
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
||||
priority = 1000, -- make sure to load this before all the other start plugins
|
||||
},
|
||||
{ "lunarvim/lunar.nvim" },
|
||||
{
|
||||
"navarasu/onedark.nvim",
|
||||
init = function()
|
||||
|
@ -21,31 +22,37 @@ return {
|
|||
require("onedark").load()
|
||||
end,
|
||||
},
|
||||
{
|
||||
"ellisonleao/gruvbox.nvim",
|
||||
init = function()
|
||||
require("gruvbox").setup({
|
||||
undercurl = true,
|
||||
underline = true,
|
||||
bold = true,
|
||||
italic = true,
|
||||
strikethrough = true,
|
||||
invert_selection = false,
|
||||
invert_signs = false,
|
||||
invert_tabline = false,
|
||||
invert_intend_guides = false,
|
||||
inverse = true, -- invert background for search, diffs, statuslines and errors
|
||||
contrast = "", -- can be "hard", "soft" or empty string
|
||||
palette_overrides = {},
|
||||
overrides = {},
|
||||
dim_inactive = false,
|
||||
transparent_mode = false,
|
||||
})
|
||||
vim.o.background = "dark" -- or "light" for light mode
|
||||
end,
|
||||
},
|
||||
{ "sainnhe/sonokai" },
|
||||
{ "EdenEast/nightfox.nvim" },
|
||||
-- {
|
||||
-- "ellisonleao/gruvbox.nvim",
|
||||
-- init = function()
|
||||
-- require("gruvbox").setup({
|
||||
-- undercurl = true,
|
||||
-- underline = true,
|
||||
-- bold = true,
|
||||
-- italic = true,
|
||||
-- strikethrough = true,
|
||||
-- invert_selection = false,
|
||||
-- invert_signs = false,
|
||||
-- invert_tabline = false,
|
||||
-- invert_intend_guides = false,
|
||||
-- inverse = true, -- invert background for search, diffs, statuslines and errors
|
||||
-- contrast = "", -- can be "hard", "soft" or empty string
|
||||
-- palette_overrides = {},
|
||||
-- overrides = {},
|
||||
-- dim_inactive = false,
|
||||
-- transparent_mode = false,
|
||||
-- })
|
||||
-- vim.o.background = "dark" -- or "light" for light mode
|
||||
-- end,
|
||||
-- },
|
||||
-- { "sainnhe/sonokai" },
|
||||
-- { "EdenEast/nightfox.nvim" },
|
||||
-- {
|
||||
-- "marko-cerovac/material.nvim",
|
||||
-- init = function()
|
||||
-- vim.g.material_style = "darker"
|
||||
-- end,
|
||||
-- },
|
||||
-- dashboard
|
||||
{
|
||||
"goolord/alpha-nvim",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue