Skip to content

Various configuration files and other resources

Notifications You must be signed in to change notification settings

petrspelos/resources

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Resources

Various configuration files and other resources...

.editorconfig

.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.

Download

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

Windows Terminal Settings

My settings for the Windows Terminal. You can find the config and some helper scripts here.

Quick Apply

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"

PowerShell Profile

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 )

Neovim configuration

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 )

About

Various configuration files and other resources

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published