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
|
LICENSE
|
||||||
misc/
|
misc/
|
||||||
.gitignore
|
.gitignore
|
||||||
|
|
|
@ -39,7 +39,7 @@ zoxide init fish | source
|
||||||
source ~/.config/fish/private.fish
|
source ~/.config/fish/private.fish
|
||||||
|
|
||||||
# Environment variables
|
# Environment variables
|
||||||
set -x EDITOR "hx"
|
set -x EDITOR "helix"
|
||||||
set -x USER "lu"
|
set -x USER "lu"
|
||||||
set -x SHELL (which fish)
|
set -x SHELL (which fish)
|
||||||
set -x TERM xterm-256color
|
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 editorigin "git remote set-url origin"
|
||||||
|
|
||||||
# Alias vim to helix if it exists because vim is way easier to type
|
# 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"
|
alias vim "hx"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Load asdf if it's installed
|
||||||
|
if test -e ~/.asdf
|
||||||
|
. ~/.asdf/asdf.fish
|
||||||
|
end
|
||||||
|
|
||||||
# Load nix profile if nix is installed
|
# Load nix profile if nix is installed
|
||||||
if test -e /nix
|
if test -e /nix
|
||||||
. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.fish
|
. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.fish
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
# title=foot
|
# title=foot
|
||||||
# locked-title=no
|
# locked-title=no
|
||||||
|
|
||||||
font=UW Ttyp0:pixelsize=16
|
font=IBMPlexMono:pixelsize=16
|
||||||
font-bold=UW Ttyp0:pixelsize=16:style=Bold
|
font-bold=IBMPlexMono:pixelsize=16:style=Bold
|
||||||
# font-italic=<italic variant of regular font>
|
# font-italic=<italic variant of regular font>
|
||||||
# font-bold-italic=<bold+italic variant of regular font>
|
# font-bold-italic=<bold+italic variant of regular font>
|
||||||
# line-height=<font metrics>
|
# line-height=<font metrics>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
theme = "gruvbox_light"
|
theme = "gruvbox"
|
||||||
|
|
||||||
[editor]
|
[editor]
|
||||||
shell = ["fish", "-c"]
|
shell = ["fish", "-c"]
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
email = shadows_withal@fastmail.com
|
email = shadows_withal@fastmail.com
|
||||||
signingkey = 0x6F33B647A7AC80CE
|
signingkey = 0x6F33B647A7AC80CE
|
||||||
[core]
|
[core]
|
||||||
editor = vim
|
editor = helix
|
||||||
[push]
|
[push]
|
||||||
default = simple
|
default = simple
|
||||||
[pull]
|
[pull]
|
||||||
|
|
Loading…
Add table
Reference in a new issue