this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

nvim: deno lsp root_dir change

Seth Etter 338a3ec9 8503ab02

+6 -1
+6 -1
nvim/lua/plugins/lsp.lua
··· 64 64 single_file_support = false, 65 65 } 66 66 LangServers.denols = { 67 - root_markers = { "deno.json", "deno.jsonc" }, 67 + root_dir = function(bufn, on_dir) 68 + local util = require("lspconfig.util") 69 + if util.root_pattern("deno.json", "deno.jsonc")(bufn) then 70 + on_dir(util.root_pattern("deno.json", "deno.jsonc")(bufn)) 71 + end 72 + end 68 73 } 69 74 LangServers.yamlls = { 70 75 settings = {