Skip to content

Instantly share code, notes, and snippets.

@kcking
Created May 19, 2026 15:16
Show Gist options
  • Select an option

  • Save kcking/92a35b72f1d8c66c26455466a78a9abe to your computer and use it in GitHub Desktop.

Select an option

Save kcking/92a35b72f1d8c66c26455466a78a9abe to your computer and use it in GitHub Desktop.
bazel-lsp lazyvim config
return {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
bazel_lsp = {
mason = false,
cmd = { "bazel-lsp" },
filetypes = { "bzl" },
root_markers = {
"MODULE.bazel",
"REPO.bazel",
"WORKSPACE",
"WORKSPACE.bazel",
".git",
},
},
},
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment