There is my NeoVim configuration in my machine.
I have a package install called Chocolateythat makes all easy, but you can install NeoVim in your machine following the NeoVim Documentation.
My setup configuration:
- Terminal: Warp
- Font family: Nerd Fonts
- Prompt theme engine: Oh My Posh
If you have Oh My Posh installed just type in terminal oh-my-posh font install to install Nerd Fonts.
Read more about Windows Package Install in official websites: Winget, Chocolatey or Scoop
- Winget:
winget install Neovim.Neovim. - Chocolatey:
choco install neovim. - Scoop:
scoop install neovim.
Please, check the AstroVim website to know more about this amazing tool.
- Open the Windows Powershell terminal.
- Make a backup of your current nvim config (if exists):
Move-Item $env:LOCALAPPDATA\nvim $env:LOCALAPPDATA\nvim.bak. - Clean neovim folders (Optional but recommended):
Move-Item $env:LOCALAPPDATA\nvim-data $env:LOCALAPPDATA\nvim-data.bak. - Clone the repository:
git clone --depth 1 https://github.com/AstroNvim/template $env:LOCALAPPDATA\nvim
Remove-Item $env:LOCALAPPDATA\nvim\.git -Recurse -Force
nvimPlease, take a look in [Dotfyle](https://dotfyle.com/neovim/plugins/trending) website to know some NeoVim plugins.
-
Favorites Color Schemes:
-
Favorites Plugins:
LazyVim is a Neovim setup powered by 💤 lazy.nvim to make it easy to customize and extend your config. Commands to work with plugins:
- Check update:
:Lazy check(<Leader>pu) - Apply update:
:Lazy update(<Leader>pU) - Clean plugins:
:Lazy sync(<Leader>pS) - Remove unused plugins:
:Lazy clean
Update NeoVim plugins and Mason packages: :AstroUpdate (<Leader>pa)
Verify AstroNvim version: Run :AstroVersion``
Reload the AstroNvim configuration: :AstroReload
Check more in AstroNvim.