diff options
| author | Alvaro Sevilla <alvaro@chainalysis.com> | 2024-06-16 18:30:10 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-16 18:30:10 +0200 | 
| commit | 0a48e34ff2d0c5de8cb89db052886920c21ffc0d (patch) | |
| tree | 60aa05d986f54366255274b923802a4f8b6cb746 | |
| parent | 52f65c3058aab29aceaf804724d332d9898ec481 (diff) | |
| parent | 3beb1c42d152cd5dc880e7c0123c93fc961b1014 (diff) | |
| download | minitab.nvim-0a48e34ff2d0c5de8cb89db052886920c21ffc0d.tar.xz minitab.nvim-0a48e34ff2d0c5de8cb89db052886920c21ffc0d.zip | |
Merge pull request #20 from ValdezFOmar/lazy-config
Install instruction for `lazy.nvim`
| -rw-r--r-- | README.md | 9 | 
1 files changed, 7 insertions, 2 deletions
| @@ -10,13 +10,18 @@  ## Install  Using packer.nvim: +```lua +use { 'alvarosevilla95/luatab.nvim', requires='nvim-tree/nvim-web-devicons' }  ``` -use { 'alvarosevilla95/luatab.nvim', requires='kyazdani42/nvim-web-devicons' } + +Using [`lazy.nvim`](https://github.com/folke/lazy.nvim) +```lua +{ 'alvarosevilla95/luatab.nvim', dependencies = { 'nvim-tree/nvim-web-devicons' } }  ```  ## Usage  Add this to your init.lua: -``` +```lua  require('luatab').setup{}  ``` | 
