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
Update intstructions for existing nvim setups (nvim-lua#65)
* Update intstructions for existing nvim setups
If you already had a nvim setup, then this makes it so that the kickstarter can work without a problem. Having that file exist and loaded with plugins gives the script many issues.
Also better to have it be a shell command rather than have the script delete a bunch of files on your computer.
Copy file name to clipboardExpand all lines: README.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ This repo is meant to be used as a starting point for a user's own configuration
18
18
* Start Neovim (`nvim`) and run `:PackerInstall` - ignore any error message about missing plugins, `:PackerInstall` will fix that shortly
19
19
* Restart Neovim
20
20
21
+
21
22
If there are languages that you don't want to use, remove their configuration and notes from your `init.lua` after copy and pasting (for example, in the mason configuration).
22
23
23
24
### Configuration
@@ -60,3 +61,9 @@ Pull-requests are welcome. The goal of this repo is not to create a Neovim confi
60
61
* Lazy-loading. Kickstart.nvim should start within 40 ms on modern hardware. Please profile and contribute to upstream plugins to optimize startup time instead.
61
62
62
63
Each PR, especially those which increase the line count, should have a description as to why the PR is necessary.
64
+
65
+
### FAQ
66
+
67
+
* What should I do if I already have a pre-existing neovim configuration?
68
+
* You should back it up, then delete all files associated with it. This includes your existing init.lua and the neovim files in .local which can be deleted with `rm -rf ~/.local/share/nvim/`
0 commit comments