Neovim: Difference between revisions

From wikinotes
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 6: Line 6:
|-
|-
| <code>:help</code> || https://neovim.io/doc/user/
| <code>:help</code> || https://neovim.io/doc/user/
|-
| official docs || https://neovim.io/doc/general/
|-
| official lsp docs || https://neovim.io/doc/lsp/
|-
| github || https://github.com/neovim/neovim
|-
|-
|}
|}
Line 30: Line 36:
|-
|-
| [[neovim guis]]
| [[neovim guis]]
|-
| [[neovim troubleshooting]]
|-
|-
|}
|}
</blockquote><!-- Notes -->
</blockquote><!-- Notes -->
= Features =
<blockquote>
</blockquote><!-- features -->
= Extensions =
<blockquote>
== neovim-remote ==
<blockquote>
Start a neovim-server, neovim connects to this, adding files to the same session.
</blockquote><!-- neovim-remote -->
</blockquote><!-- Extensions -->
= Common Issues =
<blockquote>
== strange global variable behaviour ==
neovim saves global variables in <code>~/.local/share/nvim/shada/main.shada</code>.<br>
If you encountering wonky results when changing your vimrc, delete this file and try again.
== neovim crashes terminal ==
Your terminal probably needs to be recompiled.
== scrolling panes is broken in xterm ==
You may be using xterm, not xterm-256color.<br>
Try <code>export TERM=</code> or <code>export TERM=xterm</code>.
</blockquote><!-- common issues -->

Latest revision as of 23:38, 24 June 2022

Neovim is a rewrite of vim with some new/alternative features.

Documentation

:help https://neovim.io/doc/user/
official docs https://neovim.io/doc/general/
official lsp docs https://neovim.io/doc/lsp/
github https://github.com/neovim/neovim

Locations

~/.config/nvim/init.vim nvim's vimrc
~/.config/nvim/ginit.vim GUI nvim's vimrc

Notes

neovim install
neovim configuration
neovim features
neovim guis
neovim troubleshooting