An open API service indexing awesome lists of open source software.

https://github.com/ash-olorenshaw/nvim-files

My Neovim dotfiles
https://github.com/ash-olorenshaw/nvim-files

dotfiles dotfiles-linux neovim nvim powershell pwsh vimrc vimsript

Last synced: 3 days ago
JSON representation

My Neovim dotfiles

Awesome Lists containing this project

README

          

## NeoVim dotfiles

Just a repo where I can keep track of my NeoVim files.

I use PowerShell commands to switch between environments as I hate having one giant config.

This way I also have separate sets of buffers, history, etc per environment which is cool.

How it's done in PowerShell:

```PowerShell
# in your $PROFILE
function pnvim {
$env:NVIM_APPNAME = "nvim/nvim-Python"
Write-Host "NeoVim environment set for Python "
}
```