commit 4a0e382494b359d2131106ca87d318d3e78c59d7 Author: alexion Date: Fri Jul 3 23:10:10 2026 -0400 Initial commit: fish config, git identity, dot alias diff --git a/.config/fish/config.fish b/.config/fish/config.fish new file mode 100644 index 0000000..6519211 --- /dev/null +++ b/.config/fish/config.fish @@ -0,0 +1,7 @@ +source /usr/share/cachyos-fish-config/cachyos-config.fish + +# overwrite greeting +# potentially disabling fastfetch +#function fish_greeting +# # smth smth +#end diff --git a/.config/fish/functions/dot.fish b/.config/fish/functions/dot.fish new file mode 100644 index 0000000..453f6ef --- /dev/null +++ b/.config/fish/functions/dot.fish @@ -0,0 +1,4 @@ +function dot --wraps=git --description 'Manage dotfiles via a bare repo checked out over $HOME' + git --git-dir=$HOME/.dotfiles --work-tree=$HOME $argv +end +complete -c dot -w git diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..0e25d32 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,3 @@ +[user] + name = alexion + email = contact@alexion.dev diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..232192d --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +.dotfiles +.DS_Store +*.swp +*.swo +*~ +Thumbs.db