We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 854d7c6 + 6c9dc38 commit 0b9d4d0Copy full SHA for 0b9d4d0
README.md
@@ -76,6 +76,29 @@ use({
76
})
77
```
78
79
+Or with [lazy.nvim](https://github.com/folke/lazy.nvim):
80
+
81
+Add this in your `init.lua` or `plugins.lua`
82
83
+```lua
84
+-- Install without configuration
85
+{ 'projekt0n/github-nvim-theme', version = 'v0.0.7' }
86
+-- or branch = '0.0.x'
87
88
+-- Or with configuration
89
+{
90
+ 'projekt0n/github-nvim-theme', version = 'v0.0.7',
91
92
+ config = function()
93
+ require('github-theme').setup({
94
+ -- ...
95
+ })
96
97
+ vim.cmd('colorscheme github_dark')
98
+ end
99
+}
100
+```
101
102
## Usage
103
104
Setting the colorscheme:
0 commit comments