Skip to content

Add install snippets for Windows and Fix a typo in course.tsx #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions public/course.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ NOTE: Prerequisites

Before starting this course, you should have Neovim installed and configured:

- 1) macOS: `brew install nvim fzf ripgrep`
- 1) Install Neovim and its dependencies
- macOS: `brew install nvim fzf ripgrep`
- Windows: `choco install -y neovim git ripgrep wget fd unzip gzip mingw make`
- 2) Follow this quickstart: https://github.com/nvim-lua/kickstart.nvim
- Don't feel you need to understand the entire Lua file
- At the completion of the course, we'll talk about plugins and configuration
Expand Down Expand Up @@ -729,7 +731,7 @@ function App() {

// Now, to make this stick, start building using Vim and reference the cheat sheet.
// You will make mistakes — this is okay! If you use the wrong command or mess up,
// stop, undo (`u`), and try again. Try moving slower and first and thinking carefully
// stop, undo (`u`), and try again. Try moving slower and think carefully
// about the sequence of commands you'll use before you start typing. Enjoy!

// Cheat sheet: https://github.com/leerob/vim-for-react-devs
Expand All @@ -748,6 +750,7 @@ function App() {
// - This is in the Kickstart, but you need to uncomment it
// - lazygit (easy GUI for git commands)
// - macOS: brew install lazygit
// - Windows: choco install -y lazygit
// - lazygit.nvim (open lazygit directly from Neovim with <leader>lg)
// - <leader> defaults to `space` with Quickstart
// - https://github.com/kdheepak/lazygit.nvim
Expand Down