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
- Host: GitHub
- URL: https://github.com/Surumerf/win_dotfiles
- Owner: Surumerf
- Created: 2018-01-30T13:28:48.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-06T16:38:11.000Z (about 7 years ago)
- Last Synced: 2024-06-18T00:38:43.763Z (10 months ago)
- Topics: dotfiles, powershell-profile, vimrc, windows
- Language: Vim script
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - Surumerf/win_dotfiles - Dotfiles for Windows (Vim Script)
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 |