Skip to content

Commit e7d7428

Browse files
authored
Merge pull request #21 from coffebar/main
docs: add lazy.nvim instructions + update username
2 parents 3fc4b5e + f5c5410 commit e7d7428

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,22 @@
1616

1717
Install the plugin with your preferred package manager:
1818

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+
1929
### [packer](https://github.com/wbthomason/packer.nvim)
2030

2131
```lua
2232
-- Lua
2333
use {
24-
"narutoxy/dim.lua",
34+
"0oAstro/dim.lua",
2535
requires = { "nvim-treesitter/nvim-treesitter", "neovim/nvim-lspconfig" },
2636
config = function()
2737
require('dim').setup({})
@@ -35,7 +45,7 @@ use {
3545
" Vim Script
3646
Plug 'neovim/nvim-lspconfig'
3747
Plug 'nvim-treesitter/nvim-treesitter'
38-
Plug 'narutoxy/dim.lua'
48+
Plug '0oAstro/dim.lua'
3949
4050
lua require('dim').setup({})
4151
```

0 commit comments

Comments
 (0)