aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2025-01-25 16:30:54 -0500
committerMitchell Riedstra <mitch@riedstra.dev>2025-01-25 16:30:54 -0500
commit592bc4b1ca0075a4a0a254e103d98ec32eb642bc (patch)
treee01749ab0ef52f312cc1e8969ae9a8d818f4bb30 /install.sh
parente2b0c4a4ee95d9e05162da15e5dc89484c03f599 (diff)
downloaddotfiles-592bc4b1ca0075a4a0a254e103d98ec32eb642bc.tar.gz
dotfiles-592bc4b1ca0075a4a0a254e103d98ec32eb642bc.tar.xz
Add ghostty config. Light themes for nvim
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/install.sh b/install.sh
index c457ecb..4ef204d 100755
--- a/install.sh
+++ b/install.sh
@@ -39,6 +39,12 @@ if ! [ -d "$_nvimdir" ] ; then
fi
setLink -s "$(pwd)/dotfiles/nvim/init.lua" -d "$_nvimdir/init.lua"
+_ghosttydir="$HOME/.config/ghostty"
+if ! [ -d "$_ghosttydir" ] ; then
+ mkdir "$_ghosttydir"
+fi
+setLink -s "$(pwd)/dotfiles/ghostty/config" -d "$_ghosttydir/config"
+
if ! [ -d "$HOME/bin" ] ; then mkdir "$HOME/bin" ; fi
for _f in bin/* ; do
src="$(pwd)/$_f"