Various configuration files and other resources...
.editorconfig is a configuration file for various IDEs enforcing a certain set of style rules. Additionally, mine contains specific rules for C#.
Description of my chosen standards and the config itself can be found here.
To download my .editorconfig file, you can run the following command in PowerShell:
Invoke-WebRequest -Uri https://raw.githubusercontent.com/petrspelos/resources/main/editorconfig/.editorconfig -OutFile ./.editorconfig
My settings for the Windows Terminal. You can find the config and some helper scripts here.
To quickly apply the terminal style run the following command in PowerShell:
Invoke-WebRequest -Uri https://raw.githubusercontent.com/petrspelos/resources/main/windows-terminal/settings.json -OutFile "$env:LOCALAPPDATA\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\settings.json"
My PowerShell profile includes aliases and functions to use in a PS session.
To install the profile for your local user, run the following command in PowerShell:
Invoke-WebRequest -Uri https://raw.githubusercontent.com/petrspelos/resources/main/powershell/Profile.ps1 -OutFile ( New-Item -Path "$Home\Documents\PowerShell\Profile.ps1" -Force )
In order to configure neovim, you're going to want to setup both init.vim
and .vimrc
files
- init.vim
Invoke-WebRequest -Uri https://raw.githubusercontent.com/petrspelos/resources/main/vim/init.vim -OutFile ( New-Item -Path "$Home\AppData\Local\nvim\init.vim" -Force )
- .vimrc
Invoke-WebRequest -Uri https://raw.githubusercontent.com/petrspelos/resources/main/vim/.vimrc -OutFile ( New-Item -Path "$Home\.vimrc" -Force )