33 lines
553 B
Bash
Executable File
33 lines
553 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Neovim
|
|
cp $HOME/.vimrc .
|
|
cp $HOME/.config/nvim . -r
|
|
|
|
# Hyprland
|
|
cp $HOME/.config/hypr . -r
|
|
cp $HOME/.config/waybar . -r
|
|
cp $HOME/.config/wlogout . -r
|
|
|
|
# Terminal Emulators
|
|
cp $HOME/.config/kitty/kitty.conf .
|
|
cp $HOME/.config/alacritty/alacritty.toml .
|
|
cp $HOME/.var/app/org.contourterminal.Contour/config/contour/contour.yml .
|
|
|
|
# Zsh
|
|
cp $HOME/.zshrc .
|
|
cp $HOME/.p10k.zsh .
|
|
|
|
# Tmux
|
|
cp $HOME/.tmux.conf .
|
|
cp $HOME/.config/tmux-powerline . -r
|
|
|
|
# Nix
|
|
cp $HOME/.config/home-manager . -r
|
|
|
|
# NPM
|
|
cp $HOME/.npmrc .
|
|
|
|
# LF
|
|
cp $HOME/.config/lf . -r
|