update
This commit is contained in:
parent
81c3cd2ac0
commit
0ae1cf0a07
5 changed files with 802 additions and 46 deletions
|
|
@ -1,13 +1,10 @@
|
|||
return {
|
||||
|
||||
{
|
||||
|
||||
'folke/tokyonight.nvim',
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd.colorscheme 'tokyonight-night'
|
||||
end,
|
||||
|
||||
},
|
||||
|
||||
{ -- Theme inspired by Atom
|
||||
|
|
@ -15,11 +12,45 @@ return {
|
|||
},
|
||||
{
|
||||
"ellisonleao/gruvbox.nvim",
|
||||
-- config = function()
|
||||
-- vim.o.background = "light"
|
||||
-- vim.cmd.colorscheme 'gruvbox'
|
||||
-- end,
|
||||
|
||||
config = function()
|
||||
-- setup must be called before loading the colorscheme
|
||||
-- Default options:
|
||||
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 = "hard", -- can be "hard", "soft" or empty string
|
||||
palette_overrides = {},
|
||||
overrides = {
|
||||
SignColumn = { bg = "#1d2021" }
|
||||
},
|
||||
dim_inactive = false,
|
||||
transparent_mode = false,
|
||||
})
|
||||
vim.o.background = "dark"
|
||||
vim.cmd.colorscheme 'gruvbox'
|
||||
end,
|
||||
},
|
||||
{
|
||||
"sainnhe/edge",
|
||||
},
|
||||
{
|
||||
"catppuccin/nvim",
|
||||
"rmehri01/onenord.nvim",
|
||||
"AlexvZyl/nordic.nvim",
|
||||
'marko-cerovac/material.nvim',
|
||||
"Shatur/neovim-ayu",
|
||||
'doums/darcula',
|
||||
"sainnhe/gruvbox-material",
|
||||
config = function()
|
||||
end
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue