diff options
| -rw-r--r-- | Rexfile | 4 | ||||
| -rw-r--r-- | fish/conf.d/dotfiles.fish | 4 | ||||
| -rw-r--r-- | helix/config.toml | 2 |
3 files changed, 5 insertions, 5 deletions
@@ -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" ] |
