summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-07 23:51:34 +0200
committerPaul Buetow <paul@buetow.org>2026-02-07 23:51:34 +0200
commit88d2c9ac867e92d482dbeea5e5fc759b1f195cdf (patch)
tree010adb2d211d54a60737f975b293265dc634d563
parentf408ae894e4e10bbf4358c7c07bb9618ef1353e4 (diff)
fix path
-rw-r--r--Rexfile4
-rw-r--r--fish/conf.d/dotfiles.fish4
-rw-r--r--helix/config.toml2
3 files changed, 5 insertions, 5 deletions
diff --git a/Rexfile b/Rexfile
index 4c1f5b0..6c11a47 100644
--- a/Rexfile
+++ b/Rexfile
@@ -4,7 +4,7 @@ use Rex::Logger;
our $HOME = $ENV{HOME};
# In a public Git rapository.
-our $DOT = "$HOME/git/conf/dotfiles";
+our $DOT = "$HOME/git/dotfiles";
# In a private Git repository.
our $DOT_PRIVATE = "$HOME/git/conf_private/dotfiles";
@@ -250,7 +250,7 @@ task 'home_quickedit', sub {
my %symlinks = (
'data' => "$HOME/data/",
'Documents' => "$HOME/Documents//",
- 'dotfiles' => "$HOME/git/conf/dotfiles/",
+ 'dotfiles' => "$HOME/git/dotfiles/",
'foo.zone-gemtext' => "$HOME/git/foo.zone-content/gemtext//",
'Notes' => "$HOME/Notes/",
'public-snippets' => "$HOME/git/conf/snippets//",
diff --git a/fish/conf.d/dotfiles.fish b/fish/conf.d/dotfiles.fish
index cf944a1..70289c7 100644
--- a/fish/conf.d/dotfiles.fish
+++ b/fish/conf.d/dotfiles.fish
@@ -1,4 +1,4 @@
-set -gx DOTFILES_DIR ~/git/conf/dotfiles
+set -gx DOTFILES_DIR ~/git/dotfiles
function dotfiles::update
set -l prev_pwd (pwd)
@@ -45,4 +45,4 @@ abbr -a .e 'dotfiles::fuzzy::edit'
abbr -a .rex 'dotfiles::rexify'
abbr -a .re 'dotfiles::random::edit'
abbr -a cdconf "cd $HOME/git/conf"
-abbr -a cdotfiles "cd $HOME/git/conf/dotfiles"
+abbr -a cdotfiles "cd $HOME/git/dotfiles"
diff --git a/helix/config.toml b/helix/config.toml
index cdd64b5..210bf5a 100644
--- a/helix/config.toml
+++ b/helix/config.toml
@@ -54,7 +54,7 @@ C-v = { b = "paste_clipboard_before", a = "paste_clipboard_after", r = ":clipboa
A-c = "toggle_comments" # Was originally C-c, so mapped to ALT now
# Helix related helpers
-C-h = { c = ":config-open", r = ":config-reload", C = ":run-shell-command cp -v ~/.config/helix/*.toml ~/git/conf/dotfiles/helix/", l = ":open ~/.config/helix/languages.toml", h = ":open ~/git/worktime/HelixCheat.md", L = ":log-open", d = ":theme default" }
+C-h = { c = ":config-open", r = ":config-reload", C = ":run-shell-command cp -v ~/.config/helix/*.toml ~/git/dotfiles/helix/", l = ":open ~/.config/helix/languages.toml", h = ":open ~/git/worktime/HelixCheat.md", L = ":log-open", d = ":theme default" }
C-r = [ ":config-reload", ":reload-all" ]