9 lines
245 B
Bash
Executable file
9 lines
245 B
Bash
Executable file
#!/usr/bin/bash
|
|
set -eu
|
|
|
|
# alacritty config
|
|
mkdir -p ~/.config/alacritty
|
|
ln -sf $(pwd)/dotfiles/alacritty.yml ~/.config/alacritty/alacritty.yml
|
|
|
|
mkdir -p ~/.config/wezterm
|
|
ln -sf $(pwd)/dotfiles/wezterm/wezterm.lua ~/.config/wezterm/wezterm.lua
|