Skip to content

Latest commit

 

History

History
71 lines (48 loc) · 1.12 KB

Neovim.md

File metadata and controls

71 lines (48 loc) · 1.12 KB
title date tags public
Neovim
2021-09-06 00:09
neovim
vim
true

Neovim

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

Links

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:
:writeAll

or

:wa

Full uninstalling

macOS

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