Skip to content

Commit f34ad86

Browse files
committed
Added config for alacritty
1 parent 324dd1a commit f34ad86

File tree

2 files changed

+63
-0
lines changed

2 files changed

+63
-0
lines changed

.config/alacritty/alacritty.yml

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
save_to_clipboard: true # Save mouse selection to clipboard
2+
3+
window:
4+
padding:
5+
x: 0
6+
y: 0
7+
dynamic_padding: false
8+
decorations: full
9+
startup_mode: Maximized
10+
scrolling:
11+
history: 10000
12+
multiplier: 3
13+
faux_multiplier: 3
14+
auto_scroll: true
15+
#scrolling:
16+
#history: 0
17+
#multiplier: 10
18+
19+
hide_when_typing: true
20+
21+
# Colors (Gruvbox dark)
22+
colors:
23+
# Default colors
24+
primary:
25+
# hard contrast: background = '#1d2021'
26+
background: '#282828'
27+
# soft contrast: background = '#32302f'
28+
foreground: '#ebdbb2'
29+
30+
# Normal colors
31+
normal:
32+
black: '#282828'
33+
red: '#cc241d'
34+
green: '#98971a'
35+
yellow: '#d79921'
36+
blue: '#458588'
37+
magenta: '#b16286'
38+
cyan: '#689d6a'
39+
white: '#a89984'
40+
41+
# Bright colors
42+
bright:
43+
black: '#928374'
44+
red: '#fb4934'
45+
green: '#b8bb26'
46+
yellow: '#fabd2f'
47+
blue: '#83a598'
48+
magenta: '#d3869b'
49+
cyan: '#8ec07c'
50+
white: '#ebdbb2'
51+
52+
font:
53+
size: 12
54+
normal:
55+
family: LiterationMono NF
56+
style: Book
57+
bold:
58+
family: LiterationMono NF
59+
style: Bold
60+
italic:
61+
family: LiterationMono NF
62+
style: Italic

install.sh

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ ln -s ${ROOT_DIR}/.zshrc ${HOME}/
1414
ln -s ${ROOT_DIR}/.zsh ${HOME}/
1515

1616
mkdir -p ${HOME}/.config
17+
ln -s ${ROOT_DIR}/.config/alacritty ${HOME}/.config
1718
ln -s ${ROOT_DIR}/.config/nvim ${HOME}/.config
1819
ln -s ${ROOT_DIR}/.config/vifm ${HOME}/.config
1920

0 commit comments

Comments
 (0)