Merge 'upstream': updated comments

- Use consistent syntax style for { ... } "pseudocode"
- fleis Tweak outdated comment about lazy's `config` key usage.
This commit is contained in:
Damjan 9000 2024-12-12 17:35:40 +01:00
commit 74b8749c09
2 changed files with 4 additions and 5 deletions

View File

@ -191,8 +191,8 @@ return {
--
lua_ls = {
-- cmd = {...},
-- filetypes = { ...},
-- cmd = { ... },
-- filetypes = { ... },
-- capabilities = {},
settings = {
Lua = {

View File

@ -9,9 +9,8 @@
-- which loads which-key before all the UI elements are loaded. Events can be
-- normal autocommands events (`:help autocmd-events`).
--
-- Then, because we use the `config` key, the configuration only runs
-- after the plugin has been loaded:
-- config = function() ... end
-- Then, because we use the `opt` key (recommended), the configuration runs
-- after the plugin has been loaded as `require(MODULE).setup(opts)`.
return {
{ -- Useful plugin to show you pending keybinds.