diff options
| -rw-r--r-- | .config/nvim/init.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 2044f35..b023c19 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -1187,6 +1187,9 @@ paq({ 'nvim-treesitter/nvim-treesitter', -- Highlight specified words. 't9md/vim-quickhl', + -- Yet another tree-sitter indentation. + -- TODO: uninstall it once the official nvim-treesitter provides sane indentation. + 'yioneko/nvim-yati', -- Filetypes {{{2 -- Faster replacement for bundled filetype.vim 'nathom/filetype.nvim', @@ -1848,6 +1851,9 @@ require('nvim-treesitter.configs').setup { indent = { enable = true, }, + yati = { + enable = true, + }, } |
