mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-12-22 12:48:01 +00:00
[neovim] Update github-theme
This commit is contained in:
parent
828b1147fc
commit
abcbf20581
@ -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
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user