Skip to content

Commit 36255be

Browse files
feat(bicep): add bicep-params filetype #3886
- Support for .bicepparam files Resolves #3885
1 parent 24439ac commit 36255be

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lsp/bicep.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
--- && unzip -d /usr/local/bin/bicep-langserver bicep-langserver.zip)
3333
--- ```
3434
return {
35-
filetypes = { 'bicep' },
35+
filetypes = { 'bicep', 'bicep-params' },
3636
root_markers = { '.git' },
3737
init_options = {},
3838
}

lua/lspconfig/configs/bicep.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
return {
22
default_config = {
3-
filetypes = { 'bicep' },
3+
filetypes = { 'bicep', 'bicep-params' },
44
root_dir = function(fname)
55
return vim.fs.dirname(vim.fs.find('.git', { path = fname, upward = true })[1])
66
end,

0 commit comments

Comments
 (0)