Skip to content

Commit 8fae679

Browse files
author
Nora Ayesha
authored
Fix typos and whatnot (#731)
1 parent 66e2a5a commit 8fae679

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ information about extending and exploring Neovim.
9494
### Recommended Steps
9595

9696
[Fork](https://docs.github.com/en/get-started/quickstart/fork-a-repo) this repo
97-
(so that you have your own copy that you can modify) and then installing you
98-
can install to your machine using the methods above.
97+
(so that you have your own copy that you can modify) and then install. You
98+
can install it on your machine using the methods above.
9999

100100
> **NOTE**
101101
> Your fork's url will be something like this: `https://github.com/<your_github_username>/kickstart.nvim.git`
@@ -135,7 +135,7 @@ return {
135135
<details>
136136
<summary>Adding a file tree plugin</summary>
137137

138-
This will install the tree plugin and add the command `:Neotree` for you. You can explore the documentation at [neo-tree.nvim](https://github.com/nvim-neo-tree/neo-tree.nvim) for more information.
138+
This will install the tree plugin and add the command `:Neotree` for you. For more information, see the documentation at [neo-tree.nvim](https://github.com/nvim-neo-tree/neo-tree.nvim).
139139

140140
In the file: `lua/custom/plugins/filetree.lua`, add:
141141

@@ -162,10 +162,10 @@ return {
162162
### FAQ
163163

164164
* What should I do if I already have a pre-existing neovim configuration?
165-
* You should back it up, then delete all files associated with it.
165+
* You should back it up and then delete all associated files.
166166
* This includes your existing init.lua and the neovim files in `~/.local` which can be deleted with `rm -rf ~/.local/share/nvim/`
167167
* Can I keep my existing configuration in parallel to kickstart?
168-
* Yes! You can use [NVIM_APPNAME](https://neovim.io/doc/user/starting.html#%24NVIM_APPNAME)`=nvim-NAME` to maintain multiple configurations. For example you can install the kickstart configuration in `~/.config/nvim-kickstart` and create an alias:
168+
* Yes! You can use [NVIM_APPNAME](https://neovim.io/doc/user/starting.html#%24NVIM_APPNAME)`=nvim-NAME` to maintain multiple configurations. For example, you can install the kickstart configuration in `~/.config/nvim-kickstart` and create an alias:
169169
```
170170
alias nvim-kickstart='NVIM_APPNAME="nvim-kickstart" nvim'
171171
```
@@ -174,9 +174,9 @@ return {
174174
* See [lazy.nvim uninstall](https://github.com/folke/lazy.nvim#-uninstalling) information
175175
* Why is the kickstart `init.lua` a single file? Wouldn't it make sense to split it into multiple files?
176176
* The main purpose of kickstart is to serve as a teaching tool and a reference
177-
configuration that someone can easily `git clone` as a basis for their own.
177+
configuration that someone can easily use to `git clone` as a basis for their own.
178178
As you progress in learning Neovim and Lua, you might consider splitting `init.lua`
179-
into smaller parts. A fork of kickstart that does this while maintaining the exact
179+
into smaller parts. A fork of kickstart that does this while maintaining the
180180
same functionality is available here:
181181
* [kickstart-modular.nvim](https://github.com/dam9000/kickstart-modular.nvim)
182182
* Discussions on this topic can be found here:
@@ -185,19 +185,19 @@ return {
185185
186186
### Windows Installation
187187
188-
Installation may require installing build tools, and updating the run command for `telescope-fzf-native`
188+
Installation may require installing build tools and updating the run command for `telescope-fzf-native`
189189
190190
See `telescope-fzf-native` documentation for [more details](https://github.com/nvim-telescope/telescope-fzf-native.nvim#installation)
191191
192192
This requires:
193193
194-
- Install CMake, and the Microsoft C++ Build Tools on Windows
194+
- Install CMake and the Microsoft C++ Build Tools on Windows
195195
196196
```lua
197197
{'nvim-telescope/telescope-fzf-native.nvim', build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build' }
198198
```
199199

200-
Alternatively one can install gcc and make which don't require changing the config,
200+
Alternatively, one can install gcc and make which don't require changing the config,
201201
the easiest way is to use choco:
202202

203203
1. install [chocolatey](https://chocolatey.org/install)
@@ -208,9 +208,9 @@ winget install --accept-source-agreements chocolatey.chocolatey
208208
```
209209

210210
2. install all requirements using choco, exit previous cmd and
211-
open a new one so that choco path is set, run in cmd as **admin**:
211+
open a new one so that choco path is set, and run in cmd as **admin**:
212212
```
213213
choco install -y neovim git ripgrep wget fd unzip gzip mingw make
214214
```
215215

216-
Then continue with the [Install Kickstart](#Install-Kickstart) step.
216+
Then, continue with the [Install Kickstart](#Install-Kickstart) step.

0 commit comments

Comments
 (0)