diff options
author | TJ DeVries <devries.timothyj@gmail.com> | 2022-12-20 22:12:39 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-20 22:12:39 -0500 |
commit | 521940693e10eee57f4e67dce960d2229c1441d3 (patch) | |
tree | 9f5d1b7c893bbf1fa2d1314d7b9e4f22045219c8 /README.md | |
parent | aa660e64cea945e7ee4b0ede2475e1ac49e1f592 (diff) |
move server config to easy to extend style (#71)
Move servers to new configuration style.
I will probably cover this in a new shorter video, or maybe in combination with something else.
This should hopefully remove getting so many people making issues about LSPs that they don't want to.
I can update documentation if what is happening is not clear.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -9,7 +9,7 @@ A starting point for Neovim that is: Kickstart.nvim targets *only* the latest ['stable'](https://github.com/neovim/neovim/releases/tag/stable) and latest ['nightly'](https://github.com/neovim/neovim/releases/tag/nightly) of Neovim. If you are experiencing issues, please make sure you have the latest versions. -This repo is meant to be used as a starting point for a user's own configuration; remove the things you don't use and add what you miss. This configuration serves as the reference configuration for the [lspconfig wiki](https://github.com/neovim/nvim-lspconfig/wiki). +This repo is meant to be used as a starting point for a user's own configuration; remove the things you don't use and add what you miss. Please refrain from leaving comments about enabling / disabling particular languages out of the box. ### Installation @@ -65,5 +65,6 @@ Each PR, especially those which increase the line count, should have a descripti ### FAQ * What should I do if I already have a pre-existing neovim configuration? - * 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/` + * 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/` |