return { "projekt0n/github-nvim-theme", name = "github-theme", 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 config = function() require("github-theme").setup({ options = { transparent = true, }, }) vim.cmd("colorscheme github_dark_default") vim.api.nvim_set_hl(0, "NormalFloat", { bg = "#222222" }) vim.api.nvim_set_hl(0, "WinSeparator", { fg = "#008b8b" }) vim.api.nvim_set_hl(0, "VertSplit", { fg = "#008b8b" }) vim.api.nvim_set_hl(0, "dircolorsColor0_1", { fg = "#91cbff" }) vim.api.nvim_set_hl(0, "dircolorsColor11_1", { bg = "#91cbff" }) vim.api.nvim_set_hl(0, "MiniStarterItemBullet", { bg = "#484f58" }) vim.api.nvim_set_hl(0, "FloatBorder", { fg = "#484f58" }) -- vim.api.nvim_set_hl(0, "NvimTreeEndOfBuffer", { bg = "#000000"}) --vim.api.nvim_set_hl(0, "NeoTreeEndOfBuffer", { fg = "#04070d" }) vim.api.nvim_set_hl(0, "RedrawDebugClear", { fg = "#000000" }) vim.api.nvim_set_hl(0, "BufferDefaultCurrentHINT", { fg = "#fdfdfd", bg = "#6e7681" }) vim.api.nvim_set_hl(0, "DevIconDefaultCurrent", { fg = "#2e63ff", bg = "#6e7681" }) vim.api.nvim_set_hl(0, "NeoTreeTabSeparatorActive", { fg = "#000000" }) vim.api.nvim_set_hl(0, "dircolorsDirectory", { fg = "#71b7ff" }) vim.api.nvim_set_hl(0, "DevIconIcalendar", { fg = "#71b7ff" }) vim.api.nvim_set_hl(0, "DevIconIfb", { fg = "#71b7ff" }) vim.api.nvim_set_hl(0, "DevIconIcs", { fg = "#71b7ff" }) vim.api.nvim_set_hl(0, "DevIconIcal", { fg = "#71b7ff" }) vim.api.nvim_set_hl(0, "DevIconFedora", { fg = "#71b7ff" }) vim.api.nvim_set_hl(0, "BufferDefaultCurrentINFO", { fg = "#39c5cf" }) -- vim.api.nvim_set_hl(0, "EndOfBuffer", { fg = "#000000" }) vim.api.nvim_set_hl(0, "MiniStatuslineModeOther", { fg = "#7d8590" }) end, }