Skip to content

Instantly share code, notes, and snippets.

View marc-shen's full-sized avatar
🌌
Study Astronomy

Songyu Shen marc-shen

🌌
Study Astronomy
View GitHub Profile
@ShadowRZ
ShadowRZ / README.asciidoc
Last active January 8, 2025 12:52
WeeChat 上手指南

WeeChat 上手手册

翻译者:

@ikrishagarwal
ikrishagarwal / setup-zsh-in-codespaces.md
Last active June 18, 2025 00:50
Setup starship, zsh suggestions and syntax highlight for your codespaces.
@sanyer
sanyer / README.md
Last active April 15, 2025 10:08
Awesome Steam Deck
@kashifulhaque
kashifulhaque / NvChad.md
Last active July 24, 2025 19:52
Neovim NvChad keybinds

Neovim keybinds

  • Capital letters do the opposite of small letters in command (Press shift to trigger capital letters)
  • _ (underscore) to move the cursor at the beginning of line (doesn't switch to insert mode)
    • 0 (zero) moves the cursor to the zeroth position of the line (doesn't switch to insert mode)
  • $ (dollar) to move the cursor at the end of line (doesn't switch to insert mode)
  • d$ will delete from wherever your cursor is till the end of the line
  • f<character> to move cursor to the first occurrence of <character>
    • f( to move cursor to first occurence of (
  • t<character> to move cursor to upto but not on the first occurrence of <character>
  • t( to move cursor to first occurence of (