diff options
| author | Mike J McGuirk <62523234+mikejmcguirk@users.noreply.github.com> | 2025-11-21 21:17:08 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-21 18:17:08 -0800 |
| commit | 2be96a2d409f3d3e6f02e633627a56b620e7740d (patch) | |
| tree | 71986d656c45706a490f3f024cd3a3761ed50a0f /lsp/lua_ls.lua | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-2be96a2d409f3d3e6f02e633627a56b620e7740d.tar nvim-lspconfig-2be96a2d409f3d3e6f02e633627a56b620e7740d.tar.gz nvim-lspconfig-2be96a2d409f3d3e6f02e633627a56b620e7740d.tar.bz2 nvim-lspconfig-2be96a2d409f3d3e6f02e633627a56b620e7740d.tar.lz nvim-lspconfig-2be96a2d409f3d3e6f02e633627a56b620e7740d.tar.xz nvim-lspconfig-2be96a2d409f3d3e6f02e633627a56b620e7740d.tar.zst nvim-lspconfig-2be96a2d409f3d3e6f02e633627a56b620e7740d.zip | |
feat(lua_ls): enable codelens, inlay hints #4211
Problem: Current lua_ls config does not enable codelens and inlay hints
Solution: Add enable for both of them
Diffstat (limited to 'lsp/lua_ls.lua')
| -rw-r--r-- | lsp/lua_ls.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lsp/lua_ls.lua b/lsp/lua_ls.lua index 9b159ef7..97bb6f5e 100644 --- a/lsp/lua_ls.lua +++ b/lsp/lua_ls.lua @@ -83,4 +83,10 @@ return { 'selene.yml', '.git', }, + settings = { + Lua = { + codeLens = { enable = true }, + hint = { enable = true, semicolon = 'Disable' }, + }, + }, } |
