DashNix/nvim
2024-02-23 17:27:15 +01:00
..
ftdetect feat: Add more whichkey descriptions 2023-05-13 13:07:30 +02:00
lua chore: Update setup.sh 2024-02-11 15:53:22 +01:00
snippets fix: remove paru sudo 2024-02-23 17:27:15 +01:00
.gitignore feat: change to lazyvim 2023-02-23 00:52:02 +01:00
.neoconf.json feat: change to lazyvim 2023-02-23 00:52:02 +01:00
init.lua feat: change to lazyvim 2023-02-23 00:52:02 +01:00
lazy-lock.json fix: remove paru sudo 2024-02-23 17:27:15 +01:00
lazyvim.json feat: Add better terminal 2023-10-22 16:12:38 +02:00
LICENSE feat: change to lazyvim 2023-02-23 00:52:02 +01:00
README.md chore: Update keymaps 2023-11-18 14:22:04 +01:00
stylua.toml feat: change to lazyvim 2023-02-23 00:52:02 +01:00

List of keymaps

Space as leader

Motion

key Descpription
j left
k down
l up
; right
<A-j> window left
<A-k> window up
<A-l> window down
<A-;> window right
<A-f> open file tree (root
<A-F> open file tree (cwd)

Debugging

key Description
<leader>da run with args
<leader>db toggle breakpoint
<leader>dB breakpoint condition
<leader>dC run to cursoor
<leader>dc continue
<leader>de eval
<leader>dg go to line
<leader>di step into
<leader>k down
<leader>l up
<leader>; run last
<leader>dO step over
<leader>do step out
<leader>dp pause
<leader>dr toggle repl
<leader>ds session
<leader>dt terminate
<leader>du DAP UI
<leader>dw widgets

neotest

key Description
<leader>tt execute all tests
<leader>tT execute nearest test

buffer switching

key Description
F1 next buffer (cycles)
F2 previous buffer (cycles)

formatting

key Description
F4 format this file

telescope

key Description
<leader>ff find files
<leader>fg live ripgrep
<leader>fh help for functions etc
<leader>fp find projects
<leader>fb file browser

telescope git

key Description
<leader>gq show commits
<leader>gw show commits with diff
<leader>gb show branches
<leader>gr show git status
<leader>ga show git stash
<leader>ge git file tree

project telescope

normal mode insert mode
key Description
d delete project
r rename project
c create project
s search files in project
b browse files in project
w change directory to project
R recently opened files in project
f find file within project
key Description
<C-d> delete project
<C-v> rename project
<C-a> create project
<C-s> search files in project
<C-b> browse files in project
<C-l> change directory to project
<C-r> recently opened files in project
<C-f> find file within project

toggletrouble

key Description
<leader>t show errors and warnings

cmp

Note, these require the cmp list view to be open to do anything!

key Description
<C-b> scroll docs up
<C-f> scroll docs down
<C-e> cancel cmp
Enter write selected suggestion (does nothing if not selected)
Tab scroll down through suggestion list
Shift + Tab scroll up through suggestion list

LSP

key Description
<leader>ca go to definition
<leader>ca go to declaration
<leader>cs find references
<leader>cd go to type definition
<leader>cf go to implementation
<leader>cq fix code action
<leader>cQ refactor code action
<leader>cw signature help
<leader>ce hover
<leader>cr rename

snippets

These require you to be inside a snippet!

key Description
<C-j> jump to next entry
<C-k> jump to previous entry

Leap

key Description
s followed by 2 other characters and the marker to jump

Dashboard

only available on dashboard

key Description
f file
e new file
p find project
r recently used files
t find text
c open config
q quit

Treesitter specials

used to interact with treesitter defined objects.

key Description
dif Delete the content of a function
daf Delete the entire function
dic Delete the content of a class/struct
dac Delete the entire class/struct