diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-11-22 02:17:15 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-11-22 02:17:15 +0000 |
| commit | 41d32cc1d12512038ce781c1594f05b406b31f62 (patch) | |
| tree | ce232b3e310afe72dcc70fe0372cc0f24a0afcca | |
| parent | feat(lua_ls): enable codelens, inlay hints #4211 (diff) | |
| download | nvim-lspconfig-41d32cc1d12512038ce781c1594f05b406b31f62.tar nvim-lspconfig-41d32cc1d12512038ce781c1594f05b406b31f62.tar.gz nvim-lspconfig-41d32cc1d12512038ce781c1594f05b406b31f62.tar.bz2 nvim-lspconfig-41d32cc1d12512038ce781c1594f05b406b31f62.tar.lz nvim-lspconfig-41d32cc1d12512038ce781c1594f05b406b31f62.tar.xz nvim-lspconfig-41d32cc1d12512038ce781c1594f05b406b31f62.tar.zst nvim-lspconfig-41d32cc1d12512038ce781c1594f05b406b31f62.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 14 | ||||
| -rw-r--r-- | doc/configs.txt | 12 |
2 files changed, 26 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md index 1b7e675b..6b6de76b 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -6861,6 +6861,20 @@ Default config: ```lua { ".emmyrc.json", ".luarc.json", ".luarc.jsonc", ".luacheckrc", ".stylua.toml", "stylua.toml", "selene.toml", "selene.yml", ".git" } ``` +- `settings` : + ```lua + { + Lua = { + codeLens = { + enable = true + }, + hint = { + enable = true, + semicolon = "Disable" + } + } + } + ``` --- diff --git a/doc/configs.txt b/doc/configs.txt index 1ea33e46..0dcd25e6 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -4995,6 +4995,18 @@ Default config: { "lua" } - root_markers: >lua { ".emmyrc.json", ".luarc.json", ".luarc.jsonc", ".luacheckrc", ".stylua.toml", "stylua.toml", "selene.toml", "selene.yml", ".git" } +- settings: >lua + { + Lua = { + codeLens = { + enable = true + }, + hint = { + enable = true, + semicolon = "Disable" + } + } + } < ------------------------------------------------------------------------------ |
