Neovim

  • vim-based text-editor
  • Since 0.5 version it is configurable by using Lua programming language

Configuring

plugins

colorschemes

Complete configurations

Tips and tricks

LSP Rename symbol

  • When you rename some symbol in the code that is used in many files, nvim will change the name of the symbol in files
    • The files will be modified but not saved
  • You can save all files at once to apply name changing:
1
:writeAll

or

1
:wa

Full uninstalling

macOS

1
brew uninstall neovim
1
rm -rf ~/.config/nvim/
1
2
3
rm -rf ~/.local/share/nvim/
rm -rf ~/.local/state/nvim/
rm -rf ~/.local/cache/nvim/