[neovim] Update github-theme

This commit is contained in:
Daniel Carrillo 2023-05-25 18:54:11 +02:00
parent 828b1147fc
commit abcbf20581
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16
1 changed files with 22 additions and 6 deletions

View File

@ -44,14 +44,29 @@ require("lazy").setup({
"projekt0n/github-nvim-theme", "projekt0n/github-nvim-theme",
lazy = false, lazy = false,
priority = 1000, priority = 1000,
version = "v0.0.x", version = "v1.0.x",
config = function() config = function()
require("github-theme").setup({ local options = {
colors = { darken = {
error = "#dd6861", floats = false,
sidebars = {
enable = false,
list = {},
},
}, },
}) }
vim.cmd([[colorscheme github_dimmed]]) local specs = {
github_dark_dimmed = {
syntax = {
keyword = "yellow.base",
},
diagnostic = {
error = "#dd6861",
},
},
}
require("github-theme").setup({ options = options, specs = specs })
vim.cmd("colorscheme github_dark_dimmed")
end, end,
}, },
@ -93,6 +108,7 @@ require("lazy").setup({
version = "*", version = "*",
build = "cp ./*.py ~/.config/kitty/", build = "cp ./*.py ~/.config/kitty/",
}, },
{ "robbles/logstash.vim" },
-- cmp plugins -- cmp plugins
{ {