dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

commit ff776b83567ccdb10396d916fc407499a085e047 (patch)
parent 081587b85511f05052d4e0e78daf3cd8478f114f
Author: Alex Karle <alex@karle.co>
Date:   Sun,  2 Jun 2019 00:25:26 -0400

[cleanup] some renames, symlink-on-install maintanence

Rename gdbinit and perldb to not start with a '.'. This is the general
convention I've chosen for the repo, so I'll stick with it.

Also adds a few more symlinks to the link.sh script so that on install
those don't have to be done manually!

Diffstat:
Mbin/link.sh | 3+++
R.gdbinit -> gdbinit | 0
Mperl/README.md | 4++--
Rperl/.perldb -> perl/perldb | 0
4 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/bin/link.sh b/bin/link.sh @@ -54,6 +54,9 @@ try_ln $HOMEDOTS/tmux.conf $HOME/.tmux.conf try_ln $HOMEDOTS/zsh/zshrc $HOME/.zshrc try_ln $HOMEDOTS/inputrc $HOME/.inputrc try_ln $HOMEDOTS/screenrc $HOME/.screenrc +try_ln $HOMEDOTS/gdbinit $HOME/.gdbinit +try_ln $HOMEDOTS/perl/perldb $HOME/.perldb +try_ln $HOMEDOTS/global_gitignore $HOME/.global_gitignore # .config lns try_ln $HOMEDOTS/alacritty.yml $CONFDIR/alacritty/alacritty.yml diff --git a/.gdbinit b/gdbinit diff --git a/perl/README.md b/perl/README.md @@ -4,13 +4,13 @@ Just a collection of files related to Perl that are useful to me. Some highlights: -* `.perldb` -- the Perl debugger config +* `perldb` -- the Perl debugger config * `cpanfile` -- a list of modules I can't live without (and install on any new machine) ## Installation -1. Symlink .perldb to ~/.perldb +1. Symlink perldb to ~/.perldb 2. Install `cpanm` and run the following: ```sh diff --git a/perl/.perldb b/perl/perldb