diff --git a/iamb/config.toml b/iamb/config.toml new file mode 100644 index 0000000..4d12112 --- /dev/null +++ b/iamb/config.toml @@ -0,0 +1,2 @@ +[profiles."linuxposting.xyz"] +user_id = "catppuccin-mocha-official:linuzposting.xyz" diff --git a/install.fish b/install.fish index f1f95ef..7ef7e10 100755 --- a/install.fish +++ b/install.fish @@ -198,6 +198,12 @@ if confirm-overwrite $config/yazi ln -s (realpath yazi) $config/yazi end +# Iamb +if confirm-overwrite $config/iamb + log 'Installing iamb config...' + ln -s (realpath yazi) $config/iamb +end + # Install spicetify if set -q _flag_spotify log 'Installing spotify (spicetify)...' diff --git a/yazi/yazi.toml b/yazi/yazi.toml index cc72e36..b23bbf5 100644 --- a/yazi/yazi.toml +++ b/yazi/yazi.toml @@ -1,4 +1,16 @@ [opener] edit = [ - { run = 'hx "$@"', desc = "$EDITOR", block = true, for = "unix" }, + { run = 'hx "$@"', block = true }, +] + +[open] +append_rules = [ + { name = '*.ebuild', use = 'edit' }, + { mime = "application/vnd.gentoo.*", use = "edit" }, + { mime = 'text/*', use = 'edit'}, +] + +[plugin] +append_previewers = [ + { name = "*", run = "code" }, ]