some updates

This commit is contained in:
liv 2023-03-21 13:26:00 +01:00
parent 3758852885
commit 1be766f969
5 changed files with 13 additions and 6 deletions

View file

@ -1,3 +1,4 @@
README.md
LICENSE
misc/
.gitignore

View file

@ -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

View file

@ -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>

View file

@ -1,4 +1,4 @@
theme = "gruvbox_light"
theme = "gruvbox"
[editor]
shell = ["fish", "-c"]

View file

@ -3,7 +3,7 @@
email = shadows_withal@fastmail.com
signingkey = 0x6F33B647A7AC80CE
[core]
editor = vim
editor = helix
[push]
default = simple
[pull]