fix(neovim): correctly configure inlay hints

This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2025-04-23 17:22:23 -03:00
parent 3394d5bed5
commit c04ae19640
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
2 changed files with 1 additions and 2 deletions

View file

@ -15,7 +15,7 @@ return {
features = {
autoformat = true, -- enable or disable auto formatting on start
codelens = true, -- enable/disable codelens refresh on start
inlay_hints = false, -- enable/disable inlay hints on start
inlay_hints = true, -- enable/disable inlay hints on start
semantic_tokens = true, -- enable/disable semantic token highlighting
},
-- customize lsp formatting options

View file

@ -17,7 +17,6 @@ return {
highlighturl = true, -- highlight URLs at start
notifications = true, -- enable notifications at start
signature_help = true, -- enable automatically showing signature help
inlay_hints = true, -- enable inlay hints globally
},
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
diagnostics = {