Evan
Evan
Hey there, sure thing.
I see the same as well
Hi @zombiRon , Still no luck: ```lua return { 'neovim/nvim-lspconfig', opts = { inlay_hints = { enabled = true }, }, config = function() -- Set up Terraform LSP require('lspconfig').terraformls.setup({...
Now it looks like this: ```lua require('lspconfig').terraformls.setup({ filetypes = { 'terraform', 'hcl' }, init_options = { experimentalFeatures = { prefillRequiredFields = true, }, }, }) ``` However, no luck still:...
Absolutely. I have removed the `filetypes` part in the lspconfig and here is the `:LspLog`: ```log [DEBUG][2024-04-09 06:20:23] .../lua/vim/lsp.lua:1391 "LSP[terraformls]" "client.request" 1 "textDocument/semanticTokens/full" { textDocument = { uri = "file:///Users/esn89/Documents/Projects/commercial/infra/team1/modules/application_br/main.tf"...
@zombiRon the normal completions are a bit janky. I can see completion like this: [https://imgur.com/a/bb005H2](https://imgur.com/a/bb005H2) So I do see the property
@dbanck Here are the logs again: ```log [START][2024-04-10 09:39:03] LSP logging initiated [INFO][2024-04-10 09:39:03] .../vim/lsp/rpc.lua:662 "Starting RPC client" { args = { "serve" }, cmd = "terraform-ls", extra = {...
@dbanck Thanks for confirming. What does the minimal config that I should try look like? One more thing, does the folder structure matter? And also, do I need to run...
Alright, let me try it on a single main.tf in a brand new `test/` directory. Update: @dbanck ``` Press q or to close this window. Press to view server doc....
@dbanck Another I noticed is that with my minimal config that you gave me, when I start typing: `resource "goog` my autocomplete does not show any Terraform google resources. Yours...