aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/lspconfig/server_configurations/tvm_ffi_navigator.lua19
1 files changed, 19 insertions, 0 deletions
diff --git a/lua/lspconfig/server_configurations/tvm_ffi_navigator.lua b/lua/lspconfig/server_configurations/tvm_ffi_navigator.lua
new file mode 100644
index 00000000..6abd3b8d
--- /dev/null
+++ b/lua/lspconfig/server_configurations/tvm_ffi_navigator.lua
@@ -0,0 +1,19 @@
+local util = require 'lspconfig.util'
+
+return {
+ default_config = {
+ cmd = { 'python', '-m', 'ffi_navigator.langserver' },
+ filetypes = { 'python', 'cpp' },
+ root_dir = util.root_pattern('pyproject.toml', '.git'),
+ },
+ docs = {
+ description = [[
+https://github.com/tqchen/ffi-navigator
+
+The Language Server for FFI calls in TVM to be able jump between python and C++
+
+FFI navigator can be installed with `pip install ffi-navigator`, buf for more details, please see
+https://github.com/tqchen/ffi-navigator?tab=readme-ov-file#installation
+]],
+ },
+}