The <leader> key is set to Space.
| Shortcut | Mode | Action |
|---|---|---|
jj |
Insert | Escape (Return to Normal mode) |
<leader>e |
Normal | Toggle Neo-tree (File Explorer) |
| Shortcut | Action |
|---|---|
<leader>ff |
Find files |
<leader>fg |
Live grep (search text) |
<leader>fb |
List buffers |
<leader>fh |
Help tags |
When the Neo-tree sidebar is focused, the following default shortcuts are available:
| Shortcut | Action |
|---|---|
<cr> |
Open file or directory |
s |
Open in vertical split |
i |
Open in horizontal split |
a |
Add a new file (append / for directory) |
d |
Delete file/directory |
r |
Rename file/directory |
y |
Copy to clipboard |
x |
Cut to clipboard |
p |
Paste from clipboard |
c |
Copy file/directory |
m |
Move file/directory |
H |
Toggle hidden files |
R |
Refresh explorer |
? |
Help menu |
| Command | Aktion |
|---|---|
:RenderMarkdown toggle |
Rendering ein/ausschalten |
:RenderMarkdown enable |
Rendering einschalten |
:RenderMarkdown disable |
Rendering ausschalten |
:RenderMarkdown expand |
Conceal-Level erhöhen (mehr gerendert) |
:RenderMarkdown contract |
Conceal-Level verringern (mehr Rohtext) |
- jb.nvim: JetBrains-inspired colorscheme.
- lualine.nvim: A fast and customizable statusline.
- neo-tree.nvim: Neovim plugin to manage the file system.
- telescope.nvim: A highly extendable fuzzy finder over lists.
- plenary.nvim: Useful lua functions used by many plugins.
- nui.nvim: UI Component Library for Neovim.
- render-markdown.nvim: Rendert Markdown direkt im Buffer (Headings, Tabellen, Checkboxen, Code-Blöcke).
- Built-in Tree-sitter (Neovim 0.12): Syntax-Highlighting für Markdown und weitere Sprachen ohne externes Plugin.
- Font: JetBrains Mono Nerd Font (configured for Neovide).
- Theme: JetBrains (jb).
- Statusline: Lualine with auto-theme.
update plugins
:lua vim.pack.update()
:lua vim.pack.update(nil, { force = true })oder confirm with
:writeuninstall plugin
lua vim.pack.del({ 'plugirendern-name' })install some stuff
winget install BurntSushi.ripgrep.MSVC winget install sharkdp.fd
brew install ripgrep fdshow all files except hidden ones in current directory:
find . -type d -path '*/.*' -prune -o -type f -exec printf "\033[1;32m\n[PATH: %s]\033[0m\n" {} \; -exec cat {} \;