Created
May 19, 2026 15:16
-
-
Save kcking/92a35b72f1d8c66c26455466a78a9abe to your computer and use it in GitHub Desktop.
bazel-lsp lazyvim config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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