nvim

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

nvim-treesitter.lua (384B)


      1 return {
      2   -- Treesitter
      3   { 
      4     "nvim-treesitter/nvim-treesitter", 
      5     build = ":TSUpdate", 
      6     dependencies = {
      7       "nvim-treesitter/nvim-treesitter-textobjects",
      8     },
      9     main = 'nvim-treesitter.configs', 
     10     opts = {
     11       highlight = { 
     12 	      enable = true 
     13       },
     14     }, 
     15   }, 
     16   {
     17     "nvim-treesitter/nvim-treesitter-textobjects",
     18     event = "CursorMoved",
     19   },
     20 }