Adding lsp of terraform and github copilot

This commit is contained in:
Juan Miguel Rúa 2024-05-02 15:05:49 +02:00
parent 35e0890f10
commit 5616aef5ed
2 changed files with 9 additions and 0 deletions

View File

@ -685,6 +685,7 @@ require('lazy').setup({
formatters_by_ft = {
lua = { 'stylua' },
go = { 'gofmt', 'goimports', 'golines' },
terraform = { 'terraform_fmt' },
-- Conform can also run multiple formatters sequentially
-- python = { "isort", "black" },
--
@ -885,6 +886,7 @@ require('lazy').setup({
'gomod',
'gowork',
'gosum',
'hcl',
},
-- Autoinstall languages that are not installed
auto_install = true,

View File

@ -0,0 +1,7 @@
return {
'github/copilot.vim',
opts = {},
config = function()
-- vim.g.copilot#enable()
end,
}