Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dougthor42/windows-terminal-config
My personal Windows Terminal config.
https://github.com/dougthor42/windows-terminal-config
Last synced: 6 days ago
JSON representation
My personal Windows Terminal config.
- Host: GitHub
- URL: https://github.com/dougthor42/windows-terminal-config
- Owner: dougthor42
- Created: 2022-04-16T20:54:49.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-04-17T04:04:01.000Z (over 2 years ago)
- Last Synced: 2024-03-15T12:11:21.051Z (10 months ago)
- Language: Shell
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Windows Terminal Configuration
This is my personal configuration files for
[Windows Terminal](https://docs.microsoft.com/en-us/windows/terminal/).## Usage
Run `./apply_config.sh`.
Or if you want to do things manually, copy `settings.json` to
`%LOCALAPPDATA%\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe
\LocalState\settings.json` per the instructions in [the
documentation](https://docs.microsoft.com/en-us/windows/terminal/install#settings-json-file).## Development
Development requires Python 3.8 or higher, and only because we run
[pre-commit](https://pre-commit.com/).1. Clone the repo.
2. Create a virtual environment: `python -m venv .venv`
3. Activate it: `. .venv/bin/activate`
4. Install requirements: `pip install -U pip setuptools wheel -r requirements.txt`
5. Install pre-commit hooks: `pre-commit install`
6. Make your changes.