Skip to content

Fully charged aesthetic config and a beautiful UI, enhancing your Neovim experience with a focus on completeness and visual appeal rather than performance.

License

Notifications You must be signed in to change notification settings

lucasquin/oh-my-neovim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

image

Latest Release Latest commit GitHub issues

About

This configuration transforms Neovim into a powerful, feature-rich development environment. It includes popular plugins, custom keybindings, and optimizations to enhance your coding experience.

Install

# Linux / MacOS
git clone https://github.com/lucasquin/oh-my-neovim ~/.config/nvim && nvim

# Windows Prompt (CMD)
git clone https://github.com/lucasquin/oh-my-neovim %USERPROFILE%\AppData\Local\nvim && nvim

# Windows PowerShell (pwsh)
git clone https://github.com/lucasquin/oh-my-neovim $ENV:USERPROFILE\AppData\Local\nvim && nvim

Update

# Linux / MacOS
git -C ~/.config/nvim pull || \
git clone https://github.com/lucasquin/oh-my-neovim ~/.config/nvim && \
nvim

# Windows Command Prompt (CMD)
if exist "%LOCALAPPDATA%\nvim" (
    cd /d "%LOCALAPPDATA%\nvim" && git pull
) else (
    git clone https://github.com/lucasquin/oh-my-neovim "%LOCALAPPDATA%\nvim"
) && nvim

# Windows PowerShell
if (Test-Path "$env:LOCALAPPDATA\nvim") {
    Set-Location "$env:LOCALAPPDATA\nvim"
    git pull
    Set-Location -
} else {
    git clone https://github.com/lucasquin/oh-my-neovim "$env:LOCALAPPDATA\nvim"
}
nvim

Uninstall

# Linux / MacOS
rm -rf ~/.config/nvim
rm -rf ~/.local/state/nvim
rm -rf ~/.local/share/nvim

# Windows Prompt (CMD)
rd -r ~\AppData\Local\nvim
rd -r ~\AppData\Local\nvim-data

# PowerShell (pwsh)
rm -Force ~\AppData\Local\nvim
rm -Force ~\AppData\Local\nvim-data

Thanks to all contributors

About

Fully charged aesthetic config and a beautiful UI, enhancing your Neovim experience with a focus on completeness and visual appeal rather than performance.

Topics

Resources

License

Stars

Watchers

Forks

Languages