diff options
| author | Johannes Ranke <johannes.ranke@jrwb.de> | 2026-03-19 09:29:36 +0100 |
|---|---|---|
| committer | Johannes Ranke <johannes.ranke@jrwb.de> | 2026-03-19 09:29:36 +0100 |
| commit | 91b23ed582f4a1dda87e93d799acbc28a4490b55 (patch) | |
| tree | 2f72c1ebbf88ecfe6c76685d346edb359ac95645 /install | |
| parent | e27d787f385ee4c975bf8b534e888d6a485eceb9 (diff) | |
| parent | b11292b7ac7d8efd10a5dc09fc8ac5896cd26725 (diff) | |
Merge branch 'main' into nvim-luanvim-lua
Diffstat (limited to 'install')
| -rwxr-xr-x | install | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -6,7 +6,7 @@ cd $(dirname $BASH_SOURCE) BASE=$(pwd) # dotfiles to install -for dotfile in gitconfig gitignore Rprofile reportbugrc; do +for dotfile in bashrc gitconfig gitignore Rprofile reportbugrc vimrc zshrc p10k.zsh; do mkdir -pv bak [ -e ~/.$dotfile ] && mv -v ~/.$dotfile bak/.$dotfile ln -sfv $BASE/$dotfile ~/.$dotfile @@ -20,13 +20,8 @@ if [ ! -e ~/.config/nvim ]; then ln -sfv $BASE/nvim ~/.config/nvim fi -# git-prompt -if [ ! -e ~/.git-prompt.sh ]; then - curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-prompt.sh -o ~/.git-prompt.sh -fi - # scripts -mkdir -pv ~/bin +mkdir -pv ~/.local/bin for bin in $BASE/bin/*; do - ln -svf $bin ~/bin + ln -svf $bin ~/.local/bin done |
