58 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
| return {
 | |
|     {
 | |
|         'nvim-treesitter/nvim-treesitter',
 | |
|         -- branch = 'main',
 | |
|         version = false,
 | |
|         lazy = false,
 | |
|         build = ':TSUpdate',
 | |
|         config = function()
 | |
|             require'nvim-treesitter.configs'.setup {
 | |
|                 textobjects = {
 | |
|                     move = {
 | |
|                         enable = true,
 | |
|                         set_jumps = false,
 | |
|                         goto_next_start = {
 | |
|                             [']a'] = '@parameter.inner',
 | |
|                         },
 | |
|                         goto_previous_start = {
 | |
|                             ['[a'] = '@parameter.inner',
 | |
|                         }
 | |
|                     },
 | |
|                 },
 | |
|                 auto_install = true,
 | |
|                 highlight = {
 | |
|                     enable = true,
 | |
|                 },
 | |
|             }
 | |
|         end
 | |
|     },
 | |
| 
 | |
|     {
 | |
|         'nvim-treesitter/nvim-treesitter-textobjects',
 | |
|         config = function()
 | |
| 
 | |
|         end
 | |
|     },
 | |
| 
 | |
|     { 
 | |
|         'folke/twilight.nvim',
 | |
|         dependencies = {
 | |
|             'nvim-treesitter/nvim-treesitter',
 | |
|         }
 | |
|     },
 | |
| 
 | |
|     { 'RRethy/vim-illuminate' },
 | |
| 
 | |
|     { 
 | |
|         '0oAstro/dim.lua',
 | |
|         dependencies = {
 | |
|             'nvim-treesitter/nvim-treesitter',
 | |
|             'neovim/nvim-lspconfig'
 | |
|         },
 | |
|     },
 | |
| 
 | |
|     { 
 | |
| 		'windwp/nvim-ts-autotag',
 | |
|     },
 | |
| }
 | 
