summaryrefslogtreecommitdiff
path: root/nvim/lsp/bazelrc_lsp.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lsp/bazelrc_lsp.lua')
-rwxr-xr-xnvim/lsp/bazelrc_lsp.lua20
1 files changed, 0 insertions, 20 deletions
diff --git a/nvim/lsp/bazelrc_lsp.lua b/nvim/lsp/bazelrc_lsp.lua
deleted file mode 100755
index bf17b5a..0000000
--- a/nvim/lsp/bazelrc_lsp.lua
+++ /dev/null
@@ -1,20 +0,0 @@
----@brief
----
---- https://github.com/salesforce-misc/bazelrc-lsp
----
---- `bazelrc-lsp` is a LSP for `.bazelrc` configuration files.
----
---- The `.bazelrc` file type is not detected automatically, you can register it manually (see below) or override the filetypes:
----
---- ```lua
---- vim.filetype.add {
---- pattern = {
---- ['.*.bazelrc'] = 'bazelrc',
---- },
---- }
---- ```
-return {
- cmd = { 'bazelrc-lsp', 'lsp' },
- filetypes = { 'bazelrc' },
- root_markers = { 'WORKSPACE', 'WORKSPACE.bazel', 'MODULE.bazel' },
-}