diff options
| author | nsfisis <nsfisis@gmail.com> | 2022-04-16 20:08:44 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2022-04-16 20:08:44 +0900 |
| commit | 489a900d7009e3924dadd490ef7822052f16a252 (patch) | |
| tree | e5582db64dc5390bcef6587724c2f588a686d4d0 | |
| parent | 95a7855e3977fbe4d5b4d599581f6ff7594e625a (diff) | |
| download | dotfiles-489a900d7009e3924dadd490ef7822052f16a252.tar.gz dotfiles-489a900d7009e3924dadd490ef7822052f16a252.tar.zst dotfiles-489a900d7009e3924dadd490ef7822052f16a252.zip | |
neovim:treesitter: install nvim-yati
| -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, + }, } |
