From 1be766f9690c120808735d6dc8df8cdf5ef086a4 Mon Sep 17 00:00:00 2001
From: liv <shadows_withal@fastmail.com>
Date: Tue, 21 Mar 2023 13:26:00 +0100
Subject: [PATCH] some updates

---
 .chezmoiignore               |  1 +
 dot_config/fish/config.fish  | 10 ++++++++--
 dot_config/foot/foot.ini     |  4 ++--
 dot_config/helix/config.toml |  2 +-
 dot_gitconfig                |  2 +-
 5 files changed, 13 insertions(+), 6 deletions(-)

diff --git a/.chezmoiignore b/.chezmoiignore
index d5af6bd..b5b290b 100644
--- a/.chezmoiignore
+++ b/.chezmoiignore
@@ -1,3 +1,4 @@
+README.md
 LICENSE
 misc/
 .gitignore
diff --git a/dot_config/fish/config.fish b/dot_config/fish/config.fish
index 6859423..b791af6 100644
--- a/dot_config/fish/config.fish
+++ b/dot_config/fish/config.fish
@@ -39,7 +39,7 @@ zoxide init fish | source
 source ~/.config/fish/private.fish
 
 # Environment variables
-set -x EDITOR "hx"
+set -x EDITOR "helix"
 set -x USER "lu"
 set -x SHELL (which fish)
 set -x TERM xterm-256color
@@ -93,10 +93,16 @@ alias squish "gs; and g commit -a --amend -C HEAD"
 alias editorigin "git remote set-url origin"
 
 # Alias vim to helix if it exists because vim is way easier to type
-if command --search hx > /dev/null
+if command --search helix > /dev/null
+  alias hx "helix"
   alias vim "hx"
 end
 
+# Load asdf if it's installed
+if test -e ~/.asdf
+  . ~/.asdf/asdf.fish  
+end
+
 # Load nix profile if nix is installed
 if test -e /nix
   . /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.fish
diff --git a/dot_config/foot/foot.ini b/dot_config/foot/foot.ini
index bcfd8c7..da10790 100644
--- a/dot_config/foot/foot.ini
+++ b/dot_config/foot/foot.ini
@@ -8,8 +8,8 @@
 # title=foot
 # locked-title=no
 
-font=UW Ttyp0:pixelsize=16
-font-bold=UW Ttyp0:pixelsize=16:style=Bold
+font=IBMPlexMono:pixelsize=16
+font-bold=IBMPlexMono:pixelsize=16:style=Bold
 # font-italic=<italic variant of regular font>
 # font-bold-italic=<bold+italic variant of regular font>
 # line-height=<font metrics>
diff --git a/dot_config/helix/config.toml b/dot_config/helix/config.toml
index 3629b66..2bd6cb5 100644
--- a/dot_config/helix/config.toml
+++ b/dot_config/helix/config.toml
@@ -1,4 +1,4 @@
-theme = "gruvbox_light"
+theme = "gruvbox"
 
 [editor]
 shell = ["fish", "-c"]
diff --git a/dot_gitconfig b/dot_gitconfig
index f749287..9bddd44 100644
--- a/dot_gitconfig
+++ b/dot_gitconfig
@@ -3,7 +3,7 @@
 	email = shadows_withal@fastmail.com
 	signingkey = 0x6F33B647A7AC80CE
 [core]
-	editor = vim
+	editor = helix
 [push]
 	default = simple
 [pull]