From d2236380ed7fde740737bf75c3903356523ece8d Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Mon, 28 Aug 2023 16:25:46 -0500 Subject: [PATCH] remove broken config function --- home/private_dot_config/zsh/functions/config | 56 -------------------- 1 file changed, 56 deletions(-) delete mode 100644 home/private_dot_config/zsh/functions/config diff --git a/home/private_dot_config/zsh/functions/config b/home/private_dot_config/zsh/functions/config deleted file mode 100644 index 14e8b52..0000000 --- a/home/private_dot_config/zsh/functions/config +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/env zsh - -#? WIP config file editor - -# TODO: don't error if directory doesn't exist -# Maybe use globs? or betters substitution - -declare -a configs - -configs=( - wezterm - pdm - bat - micromamba - alacritty - rmapi - tea - chezmoi - lazygit - pip - conda - nvim - nim - glab-cli - starship - git - xplr - rclone - gtk-3.0 - zsh - gh - aconfmgr - asciinema - restic - tmux - autorandr - mangal - seqdat - vivid - eget - lsd - qmk - lazydocker - gcloud - glow -) - -setopt RC_EXPAND_PARAM -setopt EXTENDED_GLOB - -# selection=$(find ${HOME/.config/${configs}(N)} -type f -not -path '*/\.git/*' -not -path '*/__pycache__/*' | fzf -m) - -find $HOME/.config/${configs} -type f \ - -not -path '*/\.git/*' -not -path '*/__pycache__/*' | - fzf --multi --print0 | xargs -0 -o $EDITOR -