13 lines
290 B
Lua
13 lines
290 B
Lua
return {
|
|
"projekt0n/github-nvim-theme",
|
|
name = "github-theme",
|
|
lazy = false,
|
|
priority = 1000,
|
|
config = function()
|
|
require("github-theme").setup({
|
|
-- здесь можно добавить свои опции, если нужно
|
|
})
|
|
|
|
vim.cmd("colorscheme github_dark")
|
|
end,
|
|
}
|