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

https://github.com/Surumerf/win_dotfiles

Dotfiles for Windows
https://github.com/Surumerf/win_dotfiles

dotfiles powershell-profile vimrc windows

Last synced: 5 months ago
JSON representation

Dotfiles for Windows

Awesome Lists containing this project

README

        

# Dotfiles for Windows

## PowerShell\_profile.ps1

Copy to `$PROFILE`;

```
Copy-Item .\PowerShell_profile.ps1 $PROFILE
```

## .vimrc

Copy to `$HOME/.vimrc`;

```
Copy-Item .\.vimrc $HOME\.vimrc
```

## .gvimrc

Copy to `$HOME/.gvimrc`;

```
Copy-Item .\.gvimrc $HOME\.gvimrc
```

## Color Settings of pwsh.exe

| Color Name | R-G-L | | Color Name | R-G-L|
|:-|:-:|:-:|:-|:-:|
| Black | 0-0-0 | | DarkGray | 128-128-128 |
| DarkBlue | 0-80-200 | | Blue | 0-0-255 |
| DarkGreen | 0-192-0 | | Green | 0-255-0 |
| DarkCyan | 0-192-192 | | Cyan | 0-255-255 |
| DarkRed | 200-40-40 | | Red | 255-0-0 |
| DarkMagenta | 192-0-192 | | Magenta | 255-0-255 |
| DarkYellow | 192-192-0 | | Yellow | 255-255-0 |
| Gray | 192-192-192 | | White | 255-255-255 |