aboutsummaryrefslogtreecommitdiff
path: root/modules/neovim/notes.md
diff options
context:
space:
mode:
authorStefan Weigl-Bosker <stefan@s00.xyz>2025-06-17 17:40:16 -0400
committerStefan Weigl-Bosker <stefan@s00.xyz>2025-06-17 17:40:16 -0400
commit408009f8a4886efa3fa8919d2a8f64da41c3c754 (patch)
tree0bc1570c23c342019ec63c202309daa3e522afc0 /modules/neovim/notes.md
parent65ed153fcf56e41d081dd6f0d8fd2cd2b5b970e9 (diff)
downloadhome-408009f8a4886efa3fa8919d2a8f64da41c3c754.tar.gz
modules/neovim: sync
Diffstat (limited to 'modules/neovim/notes.md')
-rw-r--r--modules/neovim/notes.md28
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,
+})
+```