Skip to content

Commit 7f65e6e

Browse files
authored
feat(nvim): New nvim theme github (#83)
1 parent 0c286fb commit 7f65e6e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

nvim/lua/plugins/github-theme.lua

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
return {
2+
"projekt0n/github-nvim-theme",
3+
name = "github-theme",
4+
lazy = false, -- make sure we load this during startup if it is your main colorscheme
5+
priority = 1000, -- make sure to load this before all the other start plugins
6+
config = function()
7+
require("github-theme").setup({
8+
-- ...
9+
})
10+
11+
vim.cmd("colorscheme github_dark")
12+
end,
13+
}

0 commit comments

Comments
 (0)