From 024fff575c631e2835d447515be60908c69824a2 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 16 Feb 2021 16:36:37 +1300 Subject: Add profile.d stub for cabal (Haskell) PATH set --- Makefile | 4 ++++ cabal/cabal.sh | 3 +++ cabal/profile.d/cabal.sh | 3 +++ 3 files changed, 10 insertions(+) create mode 100644 cabal/cabal.sh create mode 100644 cabal/profile.d/cabal.sh diff --git a/Makefile b/Makefile index 96c706cf..059893fb 100644 --- a/Makefile +++ b/Makefile @@ -9,6 +9,7 @@ install-bash-completion \ install-bin \ install-bin-man \ + install-cabal \ install-cpanm \ install-curl \ install-dillo \ @@ -392,6 +393,9 @@ install-bin-man: cp -p -- man/man1/*.1df $(XDG_DATA_HOME)/man/man1 cp -p -- man/man8/*.8df $(XDG_DATA_HOME)/man/man8 +install-cabal: + cp -p -- cabal/profile.d/*.sh $(HOME)/.profile.d + install-cpanm: cp -p -- cpanm/profile.d/*.sh $(HOME)/.profile.d diff --git a/cabal/cabal.sh b/cabal/cabal.sh new file mode 100644 index 00000000..b5730916 --- /dev/null +++ b/cabal/cabal.sh @@ -0,0 +1,3 @@ +# Include user-built Haskell programs if the dir exists +[ -d "$HOME"/.cabal/bin ] || return +PATH=$HOME/.cabal/bin:$PATH diff --git a/cabal/profile.d/cabal.sh b/cabal/profile.d/cabal.sh new file mode 100644 index 00000000..b5730916 --- /dev/null +++ b/cabal/profile.d/cabal.sh @@ -0,0 +1,3 @@ +# Include user-built Haskell programs if the dir exists +[ -d "$HOME"/.cabal/bin ] || return +PATH=$HOME/.cabal/bin:$PATH -- cgit v1.2.3 From 9fafa922dec3bf68dacf2b52e4d5a3216fd5579e Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 16 Feb 2021 16:37:22 +1300 Subject: Add profile.d stub for cargo (Rust) PATH set --- Makefile | 4 ++++ cargo/profile.d/cabal.sh | 3 +++ 2 files changed, 7 insertions(+) create mode 100644 cargo/profile.d/cabal.sh diff --git a/Makefile b/Makefile index 059893fb..e7256214 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,7 @@ install-bin \ install-bin-man \ install-cabal \ + install-cargo \ install-cpanm \ install-curl \ install-dillo \ @@ -396,6 +397,9 @@ install-bin-man: install-cabal: cp -p -- cabal/profile.d/*.sh $(HOME)/.profile.d +install-cargo: + cp -p -- cargo/profile.d/*.sh $(HOME)/.profile.d + install-cpanm: cp -p -- cpanm/profile.d/*.sh $(HOME)/.profile.d diff --git a/cargo/profile.d/cabal.sh b/cargo/profile.d/cabal.sh new file mode 100644 index 00000000..b5730916 --- /dev/null +++ b/cargo/profile.d/cabal.sh @@ -0,0 +1,3 @@ +# Include user-built Haskell programs if the dir exists +[ -d "$HOME"/.cabal/bin ] || return +PATH=$HOME/.cabal/bin:$PATH -- cgit v1.2.3 From ac97a2309751b277a5e695dfe59212261270dd9b Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 22 Feb 2021 22:24:09 +1300 Subject: Suppress performative wokeness in new Git hint: Using 'master' as the name for the initial branch. This default branch name hint: is subject to change. To configure the initial branch name to use in all hint: of your new repositories, which will suppress this warning, call: hint: hint: git config --global init.defaultBranch hint: hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and hint: 'development'. The just-created branch can be renamed via this command: hint: hint: git branch -m --- git/config.mi5 | 1 + 1 file changed, 1 insertion(+) diff --git a/git/config.mi5 b/git/config.mi5 index 304be811..8456cc74 100644 --- a/git/config.mi5 +++ b/git/config.mi5 @@ -8,6 +8,7 @@ output = compact [init] + defaultBranch = master templateDir = <% XDG_CONFIG_HOME %>/git/template [log] -- cgit v1.2.3 From 7037702d1d3907f01012479c05cd67ce8c6cb17d Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 22 Feb 2021 23:57:53 +1300 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index a0fec0ae..3d341109 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v10.26.0 -Fri, 12 Feb 2021 12:59:48 +0000 +tejr dotfiles v11.0.0 +Mon, 22 Feb 2021 10:57:53 +0000 -- cgit v1.2.3