You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

143 lines
3.7 KiB

4 days ago
4 days ago
  1. return {
  2. {
  3. "nvim-treesitter/nvim-treesitter",
  4. event = { "BufReadPre", "BufNewFile" },
  5. build = ":TSUpdate",
  6. dependencies = {
  7. { "nvim-treesitter/nvim-treesitter-textobjects" },
  8. },
  9. config = function()
  10. ---@class ParserConfig
  11. ---@field install_info table
  12. ---@field filetype string
  13. local parser_config = require("nvim-treesitter.parsers").get_parser_configs()
  14. parser_config.blade = {
  15. install_info = {
  16. url = "https://github.com/EmranMR/tree-sitter-blade",
  17. files = { "src/parser.c" },
  18. branch = "main",
  19. },
  20. filetype = "blade",
  21. }
  22. vim.filetype.add({
  23. extension = { blade = "blade" },
  24. pattern = {
  25. ['.*%.blade%.php'] = 'blade',
  26. },
  27. })
  28. ---
  29. ---:TSEditQuery highlights blade
  30. ---
  31. ---(directive) @function
  32. ---(directive_start) @function
  33. ---(directive_end) @function
  34. ---(comment) @comment
  35. ---((parameter) @include (#set! "priority" 110))
  36. ---((php_only) @include (#set! "priority" 110))
  37. ---((bracket_start) @function (#set! "priority" 120))
  38. ---((bracket_end) @function (#set! "priority" 120))
  39. ---(keyword) @function
  40. ---
  41. ---
  42. ---:TSEditQuery injections blade
  43. ---((text) @injection.content
  44. --- (#not-has-ancestor? @injection.content "envoy")
  45. --- (#set! injection.combined)
  46. --- (#set! injection.language php))
  47. ---
  48. -- import nvim-treesitter plugin
  49. local treesitter = require("nvim-treesitter.configs")
  50. -- configure treesitter
  51. treesitter.setup({
  52. -- ensure these language parsers are installed
  53. ensure_installed = {
  54. "json",
  55. "javascript",
  56. "typescript",
  57. "tsx",
  58. "yaml",
  59. "html",
  60. "css",
  61. "markdown",
  62. "markdown_inline",
  63. "bash",
  64. "lua",
  65. "vim",
  66. "dockerfile",
  67. "gitignore",
  68. "php",
  69. "latex",
  70. "blade",
  71. },
  72. ignore_install = {},
  73. modules = {},
  74. sync_install = true,
  75. auto_install = true,
  76. highlight = {
  77. enable = true,
  78. additional_vim_regex_highlighting = false,
  79. disable = { "latex" },
  80. },
  81. conceal = false,
  82. indent = { enable = true },
  83. autotag = { enable = true },
  84. textobjects = {
  85. select = {
  86. enable = true,
  87. lookahead = true,
  88. keymaps = {
  89. ["af"] = "@function.outer",
  90. ["if"] = "@function.inner",
  91. ["ac"] = "@conditional.outer",
  92. ["ic"] = "@conditional.inner",
  93. ["al"] = "@loop.outer",
  94. ["il"] = "@loop.inner",
  95. },
  96. selection_modes = {
  97. ["@parameter.outer"] = "v", -- charwise
  98. ["@function.outer"] = "V", -- linewise
  99. ["@class.outer"] = "<c-v>", -- blockwise
  100. },
  101. include_surrounding_whitespace = false,
  102. },
  103. move = {
  104. enable = true,
  105. set_jumps = true,
  106. goto_next_start = {
  107. ["]f"] = "@function.outer",
  108. ["]c"] = "@conditional.outer",
  109. ["]o"] = "@loop.outer",
  110. },
  111. goto_next_end = {
  112. ["]F"] = "@function.outer",
  113. ["]C"] = "@conditional.outer",
  114. ["]O"] = "@loop.outer",
  115. },
  116. goto_previous_start = {
  117. ["[f"] = "@function.outer",
  118. ["[c"] = "@conditional.outer",
  119. ["[o"] = "@loop.outer",
  120. },
  121. goto_previous_end = {
  122. ["[F"] = "@function.outer",
  123. ["[C"] = "@conditional.outer",
  124. ["[O"] = "@loop.outer",
  125. },
  126. goto_next = {
  127. ["]b"] = "@block.outer",
  128. },
  129. goto_previous = {
  130. ["[b"] = "@block.outer",
  131. },
  132. },
  133. },
  134. })
  135. end,
  136. },
  137. }