diff options
| author | guru245 <guru245@users.noreply.github.com> | 2025-05-11 09:11:50 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-10 20:11:50 -0400 |
| commit | 3d4ce34c17a8179220618486a03321ec6ac502b3 (patch) | |
| tree | a793cc0cff8090cbd718cfbd038f84d14103bc71 /nvim/init.lua | |
| parent | 93a83f59407145e7f18643fffe7b268cd29ec128 (diff) | |
| download | dots-3d4ce34c17a8179220618486a03321ec6ac502b3.tar.gz | |
feat: switch vim-sleuth for guess-indent.nvim (#1512)
Diffstat (limited to 'nvim/init.lua')
| -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 f2c9321..1002b5f 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -152,7 +152,7 @@ vim.opt.rtp:prepend(lazypath) -- NOTE: Here is where you install your plugins. require('lazy').setup({ -- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link). - 'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically + 'NMAC427/guess-indent.nvim', -- Detect tabstop and shiftwidth automatically -- NOTE: Plugins can also be added by using a table, -- with the first argument being the link and the following |