update cheat sheet

This commit is contained in:
Oliver Ladner 2024-01-24 11:18:01 +01:00
commit b8cf1b248b
2 changed files with 2 additions and 0 deletions

View file

@ -64,6 +64,7 @@ Use buffers in situations where
- `b` move to **start of previous word** (ignores punctuation due to remap)
- `Ctrl`+`d` scroll **down** 1/2 page while keeping the cursor centered
- `Ctrl`+`u` scroll **up** 1/2 page while keeping the cursor centered
- `Ctrl`+`o` jump to location you were before (e.g. after using `gg`)
## Telescope windows

View file

@ -49,4 +49,5 @@ vim.opt.updatetime = 250
vim.opt.timeoutlen = 300
-- Set completeopt to have a better completion experience
-- https://neovim.io/doc/user/options.html
vim.opt.completeopt = "menuone,noselect"