Skip to content

Instantly share code, notes, and snippets.

View AlexanderRevo's full-sized avatar

Alexander Revo AlexanderRevo

View GitHub Profile
@AlexanderRevo
AlexanderRevo / NvChad.md
Created October 27, 2024 15:24 — forked from kashifulhaque/NvChad.md
Neovim stuff with NvChad

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 (
@AlexanderRevo
AlexanderRevo / build-prboom-plus-macos.sh
Created January 27, 2020 20:16
Building prboom-plus on macOS
# Kudos to Ribbiks from Doomworld forums, whose post helped me figure out how to get prboom built in the first place.
# Install Xcode from AppStore (you can skip this step if you will be building PrBoom+ without OpenGL support)
# Run Terminal and proceed with the following steps.
# Install Xcode command line tools
xcode-select --install
# Install homebrew (you will need to enter your password for installation)