Compare commits

...

2 Commits

2 changed files with 6 additions and 1 deletions

View File

@ -13,6 +13,7 @@ modify_font cell_height 120%
# https://sw.kovidgoyal.net/kitty/conf/#cursor-customization # https://sw.kovidgoyal.net/kitty/conf/#cursor-customization
cursor_shape beam cursor_shape beam
cursor_blink_interval 0 cursor_blink_interval 0
cursor_trail 3
# https://sw.kovidgoyal.net/kitty/conf/#scrollback # https://sw.kovidgoyal.net/kitty/conf/#scrollback
scrollback_pager_history_size 16 scrollback_pager_history_size 16

View File

@ -208,10 +208,14 @@ require("lazy").setup({
version = "v0.*", version = "v0.*",
opts = { opts = {
keymap = { keymap = {
select_and_accept = { "<CR>" }, ["<C-space>"] = { "show", "show_documentation", "hide_documentation" },
["<CR>"] = { "select_and_accept", "fallback" },
["<Up>"] = { "select_prev", "fallback" },
["<Down>"] = { "select_next", "fallback" },
}, },
trigger = { trigger = {
completion = { completion = {
show_on_accept_on_trigger_character = false,
show_on_insert_on_trigger_character = false, show_on_insert_on_trigger_character = false,
}, },
}, },