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
- Host: GitHub
- URL: https://github.com/ash-olorenshaw/nvim-files
- Owner: Ash-Olorenshaw
- Created: 2025-08-15T13:39:10.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2026-01-17T22:05:27.000Z (about 1 month ago)
- Last Synced: 2026-01-18T10:08:14.375Z (about 1 month ago)
- Topics: dotfiles, dotfiles-linux, neovim, nvim, powershell, pwsh, vimrc, vimsript
- Language: Vim Script
- Homepage:
- Size: 64.5 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 "
}
```