some updates
This commit is contained in:
parent
3758852885
commit
1be766f969
5 changed files with 13 additions and 6 deletions
|
@ -1,3 +1,4 @@
|
|||
README.md
|
||||
LICENSE
|
||||
misc/
|
||||
.gitignore
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
theme = "gruvbox_light"
|
||||
theme = "gruvbox"
|
||||
|
||||
[editor]
|
||||
shell = ["fish", "-c"]
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
email = shadows_withal@fastmail.com
|
||||
signingkey = 0x6F33B647A7AC80CE
|
||||
[core]
|
||||
editor = vim
|
||||
editor = helix
|
||||
[push]
|
||||
default = simple
|
||||
[pull]
|
||||
|
|
Loading…
Add table
Reference in a new issue