diff options
| -rw-r--r-- | dotfiles/gitsyncer/config.json | 4 | ||||
| -rw-r--r-- | dotfiles/helix/config.toml | 2 | ||||
| -rw-r--r-- | dotfiles/scripts/taskwarriorfeeder.rb | 3 |
3 files changed, 8 insertions, 1 deletions
diff --git a/dotfiles/gitsyncer/config.json b/dotfiles/gitsyncer/config.json index 7103d92..2d3bfa9 100644 --- a/dotfiles/gitsyncer/config.json +++ b/dotfiles/gitsyncer/config.json @@ -7,6 +7,10 @@ { "host": "git@github.com", "name": "snonux" + }, + { + "host": "paul@t450:git", + "backupLocation": true } ], "repositories": [], diff --git a/dotfiles/helix/config.toml b/dotfiles/helix/config.toml index 7f8de78..a551b87 100644 --- a/dotfiles/helix/config.toml +++ b/dotfiles/helix/config.toml @@ -1,4 +1,4 @@ -theme = "default" +theme = "acme" [editor] bufferline = "always" diff --git a/dotfiles/scripts/taskwarriorfeeder.rb b/dotfiles/scripts/taskwarriorfeeder.rb index 4d534af..66db0c2 100644 --- a/dotfiles/scripts/taskwarriorfeeder.rb +++ b/dotfiles/scripts/taskwarriorfeeder.rb @@ -61,6 +61,9 @@ def run!(cmd, dry) puts `#{cmd}` raise "Command '#{cmd}' failed with #{$?.exitstatus}" if $?.exitstatus != 0 +rescue StandardError => e + puts "Error running command '#{cmd}': #{e.message}" + exit 1 end def skill_add!(skills_str, dry) |
