geolog-lsp/nvim-setup.lua

12 lines
208 B
Lua
Raw Normal View History

2026-02-25 14:44:17 +00:00
vim.filetype.add({
extension = {
2026-03-06 12:11:24 +00:00
mydatalog = "dl"
2026-02-25 14:44:17 +00:00
}
})
2026-03-06 12:11:24 +00:00
vim.lsp.config['mydatalog'] = {
cmd = { './result/bin/datalog-lsp' },
filetypes = { 'mydatalog' }
2026-02-25 14:44:17 +00:00
}
2026-03-06 12:11:24 +00:00
vim.lsp.enable('mydatalog')