You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -71,10 +72,6 @@ If you would prefer to hide this step and run the plugin sync from the command l
71
72
nvim --headless "+Lazy! sync" +qa
72
73
```
73
74
74
-
### Getting Started
75
-
76
-
See [Effective Neovim: Instant IDE](https://youtu.be/stqUbv-5u2s), covering the previous version. Note: The install via init.lua is outdated, please follow the install instructions in this file instead. An updated video is coming soon.
77
-
78
75
### Recommended Steps
79
76
80
77
[Fork](https://docs.github.com/en/get-started/quickstart/fork-a-repo) this repo (so that you have your own copy that you can modify) and then installing you can install to your machine using the methods above.
@@ -160,13 +157,17 @@ Each PR, especially those which increase the line count, should have a descripti
160
157
* This includes your existing init.lua and the neovim files in `~/.local` which can be deleted with `rm -rf ~/.local/share/nvim/`
161
158
* You may also want to look at the [migration guide for lazy.nvim](https://github.com/folke/lazy.nvim#-migration-guide)
162
159
* Can I keep my existing configuration in parallel to kickstart?
163
-
* 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:
160
+
* 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 a script `~/bin/nvim-kickstart`:
164
161
```
165
-
alias nvim-kickstart='NVIM_APPNAME="nvim-kickstart" nvim'
162
+
#!/bin/sh
163
+
exec env NVIM_APPNAME=nvim-kickstart nvim "$@"
166
164
```
167
-
When you run Neovim using `nvim-kickstart` alias it will use the alternative config directory and the matching local directory `~/.local/share/nvim-kickstart`. You can apply this approach to any Neovim distribution that you would like to try out.
165
+
When you run Neovim with `nvim-kickstart` it will use the alternative config directory and the matching local directory: `~/.local/share/nvim-kickstart`. You can apply this approach to any Neovim distribution that you would like to try out.
168
166
* What if I want to "uninstall" this configuration:
169
167
* See [lazy.nvim uninstall](https://github.com/folke/lazy.nvim#-uninstalling) information
168
+
* Are there any cool videos about this plugin?
169
+
* Current iteration of kickstart (coming soon)
170
+
* Here is one about the previous iteration of kickstart: [video introduction to Kickstart.nvim](https://youtu.be/stqUbv-5u2s). Note the install via init.lua no longer works as specified. Please follow the install instructions in this file instead as they're up to date.
170
171
* Why is the kickstart `init.lua` a single file? Wouldn't it make sense to split it into multiple files?
171
172
* The main purpose of kickstart is to serve as a teaching tool and a reference
172
173
configuration that someone can easily `git clone` as a basis for their own.
0 commit comments