pojokcodeid.nvim-lazy/lua/custom/plugins/githubdark.lua
2024-03-15 23:10:04 +07:00

69 lines
2.8 KiB
Lua

return {
-- "projekt0n/github-nvim-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 = {
-- -- Compiled file's destination location
-- compile_path = vim.fn.stdpath("cache") .. "/github-theme",
-- compile_file_suffix = "_compiled", -- Compiled file suffix
-- hide_end_of_buffer = true, -- Hide the '~' character at the end of the buffer for a cleaner look
-- hide_nc_statusline = true, -- Override the underline style for non-active statuslines
-- transparent = false, -- Disable setting background
-- terminal_colors = true, -- Set terminal colors (vim.g.terminal_color_*) used in `:terminal`
-- dim_inactive = false, -- Non focused panes set to alternative background
-- module_default = true, -- Default enable value for modules
-- styles = { -- Style to be applied to different syntax groups
-- comments = "NONE", -- Value is any valid attr-list value `:help attr-list`
-- functions = "NONE",
-- keywords = "NONE",
-- variables = "NONE",
-- conditionals = "NONE",
-- constants = "NONE",
-- numbers = "NONE",
-- operators = "NONE",
-- strings = "NONE",
-- types = "NONE",
-- },
-- inverse = { -- Inverse highlight for different types
-- match_paren = false,
-- visual = false,
-- search = false,
-- },
-- darken = { -- Darken floating windows and sidebar-like windows
-- floats = false,
-- sidebars = {
-- enabled = true,
-- list = {}, -- Apply dark background to specific windows
-- },
-- },
-- modules = { -- List of various plugins and additional options
-- -- ...
-- },
-- },
-- palettes = {},
-- specs = {},
-- groups = {
-- -- As with specs and palettes, the values defined under `all` will be applied to every style.
-- all = {
-- -- If `link` is defined it will be applied over any other values defined
-- Whitespace = { link = "Comment" },
--
-- -- Specs are used for the template. Specs have their palette's as a field that can be accessed
-- IncSearch = { bg = "palette.cyan" },
-- illuminatedWord = { bg = "#3b4261" },
-- illuminatedCurWord = { bg = "#3b4261" },
-- IlluminatedWordText = { bg = "#3b4261" },
-- IlluminatedWordRead = { bg = "#3b4261" },
-- IlluminatedWordWrite = { bg = "#3b4261" },
-- -- NvimTreeNormal = { fg = "palette.fg1", bg = "palette.bg2" },
-- },
-- github_dark = {
-- -- As with specs and palettes, a specific style's value will be used over the `all`'s value.
-- PmenuSel = { bg = "#73daca", fg = "bg0" },
-- },
-- },
-- })
-- end,
}