Skip to content

Commit

Permalink
Update alacritty config and documents
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Aug 21, 2023
1 parent 45cbf8d commit f56a3bf
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
28 changes: 27 additions & 1 deletion home/.config/alacritty/alacritty.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ window:
#
# Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque.
opacity: 0.8
opacity: 0.98

# Startup Mode (changes require restart)
#
Expand Down Expand Up @@ -199,6 +199,32 @@ window:
#dim_foreground: '#828482'
#bright_foreground: '#eaeaea'

# Colors (One Half Dark)
# https://github.com/sonph/onehalf/tree/75eb2e97acd74660779fed8380989ee7891eec56/alacritty
colors:
primary:
background: '0x282c34'
foreground: '0xdcdfe4'

normal:
black: '0x282c34'
red: '0xe06c75'
green: '0x98c379'
yellow: '0xe5c07b'
blue: '0x61afef'
magenta: '0xc678dd'
cyan: '0x56b6c2'
white: '0xdcdfe4'

bright:
black: '0x282c34'
red: '0xe06c75'
green: '0x98c379'
yellow: '0xe5c07b'
blue: '0x61afef'
magenta: '0xc678dd'
cyan: '0x56b6c2'
white: '0xdcdfe4'
# Cursor colors
#
# Colors which should be used to draw the terminal cursor.
Expand Down
6 changes: 6 additions & 0 deletions windows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
1. On powershell
```powershell
mkdir -p ~/.config
mkdir -p "$($env:APPDATA)/alacritty"
Copy-Item "\\wsl.localhost\Ubuntu\home\kachick\repos\dotfiles\home\.config/starship.toml" -Destination ~/.config
Copy-Item "\\wsl.localhost\Ubuntu\home\kachick\repos\dotfiles\home\.config/alacritty/alacritty.yml" -Destination "$($env:APPDATA)/alacritty/alacritty.yml"
Copy-Item "\\wsl.localhost\Ubuntu\home\kachick\repos\dotfiles\windows\Microsoft.PowerShell_profile.ps1" -Destination "$PROFILE"
```
1. Enable Bitlocker and backup the restore key
Expand Down Expand Up @@ -138,3 +140,7 @@ Remove the noisy news widget as below!
```powershell
winget uninstall --id 9MSSGKG348SP
```

## How to copy and paste in alacritty?

[Add shift for basic keybinds, not just the ctrl+c, ctrl+v](https://github.com/alacritty/alacritty/issues/2383)

0 comments on commit f56a3bf

Please sign in to comment.