We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3fc4b5e + f5c5410 commit e7d7428Copy full SHA for e7d7428
1 file changed
README.md
@@ -16,12 +16,22 @@
16
17
Install the plugin with your preferred package manager:
18
19
+### [lazy](https://github.com/folke/lazy.nvim)
20
+
21
+```lua
22
+-- Lua
23
+{
24
+ "0oAstro/dim.lua",
25
+ dependencies = { "nvim-treesitter/nvim-treesitter", "neovim/nvim-lspconfig" },
26
+},
27
+```
28
29
### [packer](https://github.com/wbthomason/packer.nvim)
30
31
```lua
32
-- Lua
33
use {
- "narutoxy/dim.lua",
34
35
requires = { "nvim-treesitter/nvim-treesitter", "neovim/nvim-lspconfig" },
36
config = function()
37
require('dim').setup({})
@@ -35,7 +45,7 @@ use {
45
" Vim Script
46
Plug 'neovim/nvim-lspconfig'
47
Plug 'nvim-treesitter/nvim-treesitter'
38
-Plug 'narutoxy/dim.lua'
48
+Plug '0oAstro/dim.lua'
39
49
40
50
lua require('dim').setup({})
41
51
```
0 commit comments