@@ -510,7 +510,7 @@ require('lazy').setup({
510
510
local client = vim .lsp .get_client_by_id (event .data .client_id )
511
511
if client and client_supports_method (client , vim .lsp .protocol .Methods .textDocument_documentHighlight , event .buf ) then
512
512
local highlight_augroup = vim .api .nvim_create_augroup (' kickstart-lsp-highlight' , { clear = false })
513
- vim .api .nvim_create_autocmd ({ ' CursorHold' , ' CursorHoldI ' }, {
513
+ vim .api .nvim_create_autocmd ({ ' CursorHold' }, {
514
514
buffer = event .buf ,
515
515
group = highlight_augroup ,
516
516
callback = vim .lsp .buf .document_highlight ,
@@ -754,7 +754,7 @@ require('lazy').setup({
754
754
-- <c-k>: Toggle signature help
755
755
--
756
756
-- See :h blink-cmp-config-keymap for defining your own keymap
757
- preset = ' default ' ,
757
+ preset = ' super-tab ' ,
758
758
759
759
-- For more advanced Luasnip keymaps (e.g. selecting choice nodes, expansion) see:
760
760
-- https://github.com/L3MON4D3/LuaSnip?tab=readme-ov-file#keymaps
@@ -770,6 +770,9 @@ require('lazy').setup({
770
770
-- By default, you may press `<c-space>` to show the documentation.
771
771
-- Optionally, set `auto_show = true` to show the documentation after a delay.
772
772
documentation = { auto_show = false , auto_show_delay_ms = 500 },
773
+
774
+ -- Display a preview of the selected item on the current line
775
+ ghost_text = { enabled = true },
773
776
},
774
777
775
778
sources = {
0 commit comments