Fix typo: compeletions#28
Closed
diegorodriguezv wants to merge 47 commits intooriori1703:maintained-upstreamfrom
Closed
Fix typo: compeletions#28diegorodriguezv wants to merge 47 commits intooriori1703:maintained-upstreamfrom
diegorodriguezv wants to merge 47 commits intooriori1703:maintained-upstreamfrom
Conversation
Guide users towards lazy's `init` key for plugins written in VimScript.
Add lua_ls annotations for improved hover experience and replace vim.fn.empty() with vim.tbl_isempty()
The following lines do nothing and can be removed:
format = function(diagnostic)
local diagnostic_message = {
[vim.diagnostic.severity.ERROR] = diagnostic.message,
[vim.diagnostic.severity.WARN] = diagnostic.message,
[vim.diagnostic.severity.INFO] = diagnostic.message,
[vim.diagnostic.severity.HINT] = diagnostic.message,
}
return diagnostic_message[diagnostic.severity]
end,
The following line causes diagnostics which aren't of severity level
error to not have the specific text area underlined. This is less useful
than the default of showing underlines for all diagnostic levels, so
remove this line as well:
underline = { severity = vim.diagnostic.severity.ERROR },
This would allow to write more concise and easy to understands keybinds in the following commit
This could help beginners to get autocompletion, catch mistakes earlier, and allow them to skip the docs for simple configs. This is not perfect because a lot of the plugins type all of their keys as required, even though they have defaults, but this is good enough.
fix: Load guess-indent.nvim
feat(diagnostics): Add `virtual_lines` for discoverability
feat(grep-string): works with visual selection too
…stic-config fix(diagnostic): remove unnecessary config lines
feat: add toggle to show/hide diagnostics
Add type hints to plugin options where possible
Feature/collapse functions
feat: Enhances breakpoint editing The keymapping `<leader>B` is now configured to guide users through the process of adding a `condition`, `hitCondition`, and `logMessage` to a breakpoint. --------- Co-authored-by: Brian Lehrer <661570+blehrer@users.noreply.github.com>
docs: Add documentation for lazy's `init` key
docs: Document methods to get the latest neovim
…on-maintained-upstream Raise the minimum nvim version to 0.11
Adds 'gr' to which-keys documentation, so users can see that LSP actions are grouped after 'gr' key binds. It used to be directly under 'g', which required no additional grouping info on which-keys. See nvim-lua#1427 for further explanation on the key binds change.
fix: adjust after 'mini.nvim' transfer to 'nvim-mini' org
Add 'gr' group to which-keys
chore: fix help tag
Fixed a bug in blink.cmp causing editor freezes on WSL2 systems
Add .DS_Store to .gitignore
…tions/autocommands
Mn nagy improvments
This reverts commit d04d64e. The fix is not needed any more after saghen/blink.cmp@1cc44a3 as mentioned in nvim-lua#1634 (comment)
690210e to
fed44df
Compare
Owner
|
I'm now a maintainer of the upstream kickstart.nvim, so you should probably change your remote to that repo :) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix typo: compeletions