We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c286fb commit 7f65e6eCopy full SHA for 7f65e6e
nvim/lua/plugins/github-theme.lua
@@ -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