diff options
| author | Alvaro-Kothe <kothe65@gmail.com> | 2023-10-10 19:57:49 -0300 |
|---|---|---|
| committer | Alvaro-Kothe <kothe65@gmail.com> | 2023-10-10 20:02:44 -0300 |
| commit | 741b5d6bff7f22065a21ccbb216f731e5d76938b (patch) | |
| tree | 88dcc5fd92046c50f205ba669084a476d28ad9e8 /nvim | |
| parent | d27d0e0516344ce58b8b64b559ece0d4dc28981e (diff) | |
| download | dots-741b5d6bff7f22065a21ccbb216f731e5d76938b.tar.gz | |
Fix help for indent-blankline plugin
Since version 3 `:help indent_blankline` no longer works. Replace it
with `:help ibl`.
Diffstat (limited to 'nvim')
| -rw-r--r-- | nvim/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index ee1f390..fb08080 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -177,7 +177,7 @@ require('lazy').setup({ -- Add indentation guides even on blank lines 'lukas-reineke/indent-blankline.nvim', -- Enable `lukas-reineke/indent-blankline.nvim` - -- See `:help indent_blankline.txt` + -- See `:help ibl` main = 'ibl', opts = {}, }, |