87 lines
3.2 KiB
Lua
87 lines
3.2 KiB
Lua
return {
|
|
{
|
|
-- "zenbones-theme/zenbones.nvim",
|
|
-- -- Optionally install Lush. Allows for more configuration or extending the colorscheme
|
|
-- -- If you don't want to install lush, make sure to set g:zenbones_compat = 1
|
|
-- -- In Vim, compat mode is turned on as Lush only works in Neovim.
|
|
-- dependencies = "rktjmp/lush.nvim",
|
|
-- lazy = false,
|
|
-- priority = 1000,
|
|
-- -- you can set set configuration options here
|
|
-- config = function()
|
|
-- vim.opt.termguicolors = true
|
|
-- vim.opt.background = warm
|
|
-- vim.g.zenbones_darken_comments = 45
|
|
-- vim.cmd.colorscheme('neobones')
|
|
-- end,
|
|
},
|
|
{
|
|
-- "wincent/base16-nvim",
|
|
-- lazy = false, -- load at start
|
|
-- priority = 1000, -- load first
|
|
-- config = function()
|
|
-- vim.cmd([[colorscheme nord]])
|
|
-- vim.o.background = "dark"
|
|
-- -- XXX: hi Normal ctermbg=NONE
|
|
-- -- Make comments more prominent -- they are important.
|
|
-- local bools = vim.api.nvim_get_hl(0, { name = "Boolean" })
|
|
-- vim.api.nvim_set_hl(0, "Comment", bools)
|
|
-- -- Make it clearly visible which argument we're at.
|
|
-- local marked = vim.api.nvim_get_hl(0, { name = "PMenu" })
|
|
-- vim.api.nvim_set_hl(
|
|
-- 0,
|
|
-- "LspSignatureActiveParameter",
|
|
-- { fg = marked.fg, bg = marked.bg, ctermfg = marked.ctermfg, ctermbg = marked.ctermbg, bold = true }
|
|
-- )
|
|
-- -- XXX
|
|
-- -- Would be nice to customize the highlighting of warnings and the like to make
|
|
-- -- them less glaring. But alas
|
|
-- -- https://github.com/nvim-lua/lsp_extensions.nvim/issues/21
|
|
-- -- call Base16hi("CocHintSign", g:base16_gui03, "", g:base16_cterm03, "", "", "")
|
|
-- end,
|
|
},
|
|
{
|
|
"blazkowolf/gruber-darker.nvim",
|
|
opts = {
|
|
bold = false,
|
|
invert = {
|
|
signs = false,
|
|
tabline = false,
|
|
visual = false,
|
|
},
|
|
italic = {
|
|
strings = true,
|
|
comments = true,
|
|
operators = false,
|
|
folds = true,
|
|
},
|
|
undercurl = true,
|
|
underline = true,
|
|
},
|
|
config = function()
|
|
vim.cmd.colorscheme("gruber-darker")
|
|
end,
|
|
},
|
|
{
|
|
-- "sainnhe/gruvbox-material",
|
|
-- priority = 1000,
|
|
-- config = function()
|
|
-- vim.opt.termguicolors = true
|
|
-- vim.g.gruvbox_material_foreground = "original" -- original, mix, material
|
|
-- vim.g.gruvbox_material_background = "hard"
|
|
-- vim.g.gruvbox_material_better_performance = 1
|
|
-- vim.g.gruvbox_material_enable_italic = 0
|
|
-- vim.g.gruvbox_material_enable_bold = 0
|
|
-- vim.cmd.colorscheme("gruvbox-material")
|
|
-- end,
|
|
},
|
|
{
|
|
-- "sainnhe/everforest",
|
|
-- config = function()
|
|
-- vim.g.everforest_background = "hard"
|
|
-- vim.cmd.colorscheme("everforest")
|
|
-- -- vim.api.nvim_set_hl(0, "LspInlayHint", { fg = "#9DA9A0" })
|
|
-- end,
|
|
},
|
|
}
|