mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2026-01-11 21:36:00 +01:00
17 lines
451 B
Makefile
17 lines
451 B
Makefile
install: dotfiles git-hooks programs
|
|
|
|
# Install dotfiles in users home directory
|
|
dotfiles:
|
|
./.local/bin/scripts/install_dotfiles.sh
|
|
|
|
# Use tracked git hooks
|
|
git-hooks:
|
|
git config --global core.hooksPath .local/bin/git-hooks
|
|
|
|
# Export code-server extensions to config directory
|
|
code-extensions:
|
|
~/.local/bin/scripts/code_server_export_extensions.sh
|
|
|
|
# Install dev programs and configuration files
|
|
programs:
|
|
~/.local/bin/scripts/install_programs.sh
|