diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-06-17 17:40:16 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-06-17 17:40:16 -0400 |
| commit | 408009f8a4886efa3fa8919d2a8f64da41c3c754 (patch) | |
| tree | 0bc1570c23c342019ec63c202309daa3e522afc0 /modules/neovim/notes.md | |
| parent | 65ed153fcf56e41d081dd6f0d8fd2cd2b5b970e9 (diff) | |
| download | home-408009f8a4886efa3fa8919d2a8f64da41c3c754.tar.gz | |
modules/neovim: sync
Diffstat (limited to 'modules/neovim/notes.md')
| -rw-r--r-- | modules/neovim/notes.md | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/modules/neovim/notes.md b/modules/neovim/notes.md new file mode 100644 index 0000000..6157f3a --- /dev/null +++ b/modules/neovim/notes.md @@ -0,0 +1,28 @@ +usage +===== + +- `van` `vin` lsp incremental selection now native via lsp (textDocument/selectionRange) +- `vim.lpeg` looks cool +- `:help diagnostic-signs` +- vim.ui_attach callbacks for ui-messages msg_show + +config +====== + +- new `pummaxwidth` +- `complete` was updated a bit +- `nvim_echo` +- `vim.diagnostic.setqflist` (and setloclist) + - check out `vim.lsp.listOpts` `on_list` option. (or just the loclist opt) +- `CommandLeavePre` +- `ui-messages` `msg_show` `append` param +- `vim.lsp.ClientConfig` + +to disable hover highlights: +```lua +vim.api.nvim_create_autocmd('ColorScheme', { + callback = function() + vim.api.nvim_set_hl(0, 'LspReferenceTarget', {}) + end, +}) +``` |