Nixfiles! :3
0

Configure Feed

Select the types of activity you want to include in your feed.

Stole a little more of ollies blink


Signed-off-by: MLC Bloeiman <mar@strawmelonjuice.com>

MLC Bloeiman (May 18, 2026, 10:21 AM +0200) d54d19ea 8263845f

+19 -1
+19 -1
configs/nvim/init.lua
··· 81 81 }) 82 82 83 83 require("blink.cmp").setup({ 84 - keymap = { preset = "default" }, 84 + keymap = { 85 + -- thank you ollie https://git.ollie.earth/ollie/nvim/src/commit/a2dace525c23d5bec9d85b65f14918cb6cc1fca9/lua/plugins/blink-cmp.lua#L8 86 + preset = "none", 87 + ["<C-k>"] = { "select_prev" }, 88 + ["<C-j>"] = { "select_next" }, 89 + -- scroll docs 90 + ["<C-b>"] = { 91 + function(cmp) 92 + cmp.scroll_documentation_up(4) 93 + end, 94 + }, 95 + ["<C-f>"] = { 96 + function(cmp) 97 + cmp.scroll_documentation_down(4) 98 + end, 99 + }, 100 + -- confirm selection 101 + ["<C-Enter>"] = { "select_and_accept" }, 102 + }, 85 103 86 104 appearance = { 87 105 use_nvim_cmp_as_default = true,