Skip to content

Commit 5616aef

Browse files
Adding lsp of terraform and github copilot
1 parent 35e0890 commit 5616aef

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

init.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -685,6 +685,7 @@ require('lazy').setup({
685685
formatters_by_ft = {
686686
lua = { 'stylua' },
687687
go = { 'gofmt', 'goimports', 'golines' },
688+
terraform = { 'terraform_fmt' },
688689
-- Conform can also run multiple formatters sequentially
689690
-- python = { "isort", "black" },
690691
--
@@ -885,6 +886,7 @@ require('lazy').setup({
885886
'gomod',
886887
'gowork',
887888
'gosum',
889+
'hcl',
888890
},
889891
-- Autoinstall languages that are not installed
890892
auto_install = true,
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
return {
2+
'github/copilot.vim',
3+
opts = {},
4+
config = function()
5+
-- vim.g.copilot#enable()
6+
end,
7+
}

0 commit comments

Comments
 (0)