mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2026-01-13 13:56:00 +01:00
Compare commits
No commits in common. "a3e17237877ab5e7e7556dd19edd72088b88d3e1" and "82cd2c6423babd826607153f1c158cb81ca6783d" have entirely different histories.
a3e1723787
...
82cd2c6423
5 changed files with 9 additions and 16 deletions
|
|
@ -1,4 +0,0 @@
|
||||||
bind-addr: 0.0.0.0:8000
|
|
||||||
auth: none
|
|
||||||
cert: false
|
|
||||||
|
|
||||||
7
.gitignore
vendored
7
.gitignore
vendored
|
|
@ -11,15 +11,12 @@
|
||||||
!.ssh/config
|
!.ssh/config
|
||||||
!.config/git/
|
!.config/git/
|
||||||
!.config/git/**
|
!.config/git/**
|
||||||
!.config/code-server/
|
|
||||||
!.config/code-server/**
|
|
||||||
!.bash_aliases
|
!.bash_aliases
|
||||||
!.bash_profile
|
!.bash_profile
|
||||||
!.local/bin/
|
!.local/bin/
|
||||||
!.local/bin/scripts/
|
|
||||||
!.local/bin/scripts/**
|
|
||||||
!.local/bin/git-hooks/
|
!.local/bin/git-hooks/
|
||||||
!.local/bin/git-hooks/**
|
!.local/bin/git-hooks/pre-commit
|
||||||
|
!.local/bin/code_server_export_extensions
|
||||||
!.local/share/
|
!.local/share/
|
||||||
!.local/share/code-server/
|
!.local/share/code-server/
|
||||||
!.local/share/code-server/User/
|
!.local/share/code-server/User/
|
||||||
|
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
cp -rp . $HOME
|
|
||||||
cd ..
|
|
||||||
rm -r dotfiles
|
|
||||||
9
Makefile
9
Makefile
|
|
@ -2,7 +2,12 @@ install: dotfiles git-hooks
|
||||||
|
|
||||||
# Install dotfiles in users home directory
|
# Install dotfiles in users home directory
|
||||||
dotfiles:
|
dotfiles:
|
||||||
./.local/bin/scripts/install_dotfiles.sh
|
@if [ -d dotfiles ]; then \
|
||||||
|
cp -r ./dotfiles/. $HOME \
|
||||||
|
rm -rf dotfiles \
|
||||||
|
else \
|
||||||
|
echo "Dotfiles already installed or folder is missing"; \
|
||||||
|
fi
|
||||||
|
|
||||||
# Use tracked git hooks
|
# Use tracked git hooks
|
||||||
git-hooks:
|
git-hooks:
|
||||||
|
|
@ -10,4 +15,4 @@ git-hooks:
|
||||||
|
|
||||||
# Export code-server extensions to config directory
|
# Export code-server extensions to config directory
|
||||||
code-extensions:
|
code-extensions:
|
||||||
~/.local/bin/scripts/code_server_export_extensions.sh
|
~/.local/bin/code_server_export_extensions
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue