for Windows

This commit is contained in:
Rikuoh Tsujitani 2024-11-01 22:49:18 +09:00
parent 1e2b228aab
commit 97a0ee248f
2 changed files with 66 additions and 81 deletions

66
alacritty.toml Executable file
View file

@ -0,0 +1,66 @@
[colors.primary]
background = '#272E33'
foreground = '#d3c6aa'
[colors.normal]
black = '#414B50'
red = '#e67e80'
green = '#a7c080'
yellow = '#dbbc7f'
blue = '#7fbbb3'
magenta = '#d699b6'
cyan = '#83c092'
white = '#d3c6aa'
# Bright colors
[colors.bright]
black = '#414B50'
red = '#e67e80'
green = '#a7c080'
yellow = '#dbbc7f'
blue = '#7fbbb3'
magenta = '#d699b6'
cyan = '#83c092'
white = '#d3c6aa'
[cursor]
blink_interval = 470
unfocused_hollow = false
[cursor.style]
blinking = "Always"
shape = "Underline"
[env]
TERM = "xterm-256color"
[font]
size = 13
[font.bold]
family = "UDEV Gothic 35NFLG"
style = "Bold"
[font.bold_italic]
family = "UDEV Gothic 35NFLG"
style = "Bold Italic"
[font.italic]
family = "UDEV Gothic 35NFLG"
style = "Italic"
[font.normal]
family = "UDEV Gothic 35NFLG"
style = "Regular"
[terminal.shell]
args = ["-d", "Distrod"]
program = "/Windows/System32/wsl.exe"
[window]
dynamic_padding = false
opacity = 0.97
[window.padding]
x = 0
y = 0

View file

@ -1,81 +0,0 @@
# シェル
shell:
program: /Windows/System32/wsl.exe ~ -d Distrod
# カーソル
cursor:
style:
shape: Underline
blinking: Always
unfocused_hollow: false
blink_interval: 470
# タブスペース
tabspaces: 4
# フォント
font:
size: 12
normal:
family: 'UDEV Gothic 35NFLG'
style: Regular
bold:
family: 'UDEV Gothic 35NFLG'
style: Bold
italic:
family: 'UDEV Gothic 35NFLG'
style: Italic
bold_italic:
family: 'UDEV Gothic 35NFLG'
style: Bold Italic
# ウインドウ
window:
dimensions:
columms: 370
line: 250
decorations: full
opacity: 0.97
padding:
x: 0
y: 0
dynamic_padding: false
# 環境変数
env:
TERM: alacritty
# Colors (Horizon Dark)
colors:
# Primary colors
primary:
background: '0x1c1e26'
foreground: '0xe0e0e0'
# Cursor colors
cursor:
cursor: '0x00ff00'
vi_mode_cursor:
cursor: '0x00ff00'
# Normal colors
normal:
black: '0x16161c'
red: '0xe95678'
green: '0x29d398'
yellow: '0xfab795'
blue: '0x26bbd9'
magenta: '0xee64ac'
cyan: '0x59e1e3'
white: '0xd5d8da'
# Bright colors
bright:
black: '0x5b5858'
red: '0xec6a88'
green: '0x3fdaa4'
yellow: '0xfbc3a7'
blue: '0x3fc4de'
magenta: '0xf075b5'
cyan: '0x6be4e6'
white: '0xd5d8da'