From 55fb5e3756e07960947b5916f8e802ade32bb940 Mon Sep 17 00:00:00 2001 From: vx-clutch Date: Thu, 2 Oct 2025 20:16:12 -0400 Subject: [PATCH] big changes --- Brewfile | 4 ---- brew.sh | 1 - git/.config/git/config | 21 ----------------- lazygit/.config/lazygit/config.yml | 5 ----- local/.local/bin/compiler | 36 ------------------------------ local/.local/bin/pkg-install | 25 --------------------- local/.local/bin/pkg-remove | 25 --------------------- plug.sh | 1 - stdpkg | 5 ----- 9 files changed, 123 deletions(-) delete mode 100644 Brewfile delete mode 100755 brew.sh delete mode 100644 git/.config/git/config delete mode 100644 lazygit/.config/lazygit/config.yml delete mode 100755 local/.local/bin/compiler delete mode 100755 local/.local/bin/pkg-install delete mode 100755 local/.local/bin/pkg-remove delete mode 100755 plug.sh delete mode 100644 stdpkg diff --git a/Brewfile b/Brewfile deleted file mode 100644 index 66cf770..0000000 --- a/Brewfile +++ /dev/null @@ -1,4 +0,0 @@ -tap "homebrew/cask-fonts" - -brew "neovim", args: ["HEAD"] -cask "font-comic-shanns-mono-nerd-font" diff --git a/brew.sh b/brew.sh deleted file mode 100755 index 4d96b5b..0000000 --- a/brew.sh +++ /dev/null @@ -1 +0,0 @@ -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" diff --git a/git/.config/git/config b/git/.config/git/config deleted file mode 100644 index b3f81a2..0000000 --- a/git/.config/git/config +++ /dev/null @@ -1,21 +0,0 @@ -[init] - defaultBranch = master -[push] - default = current -[color] - ui = auto -[alias] - branches = for-each-ref --sort=-committerdate --format=\"%(color:blue)%(authordate:relative)\t%(color:red)%(authorname)\t%(color:white)%(color:bold)%(refname:short)\" refs/remotes -[merge] - ff = only -[fetch] - prune = true -[rebase] - autosquash = true -[diff] - colorMoved = zebra -[user] - email = owestness@gmail.com - name = vx-clutch -[credential] - helper = store diff --git a/lazygit/.config/lazygit/config.yml b/lazygit/.config/lazygit/config.yml deleted file mode 100644 index a6ba92f..0000000 --- a/lazygit/.config/lazygit/config.yml +++ /dev/null @@ -1,5 +0,0 @@ -gui: - nerdFontsVersion: "3" - commitMessagePanelHeight: 0 -os: - editPreset: 'nvim' diff --git a/local/.local/bin/compiler b/local/.local/bin/compiler deleted file mode 100755 index a5df564..0000000 --- a/local/.local/bin/compiler +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - - -# https://github.com/LukeSmithxyz/voidrice/blob/master/.local/bin/compiler - - -# This script will compile or run another finishing operation on a document. I -# have this script run via vim. - -# Compiles .tex. groff (.mom, .ms), .rmd, .md, .org. Opens .sent files as sent -# presentations. Runs scripts based on extension or shebang. - -file="${1}" -ext="${file##*.}" -dir=${file%/*} -base="${file%.*}" - -cd "${dir}" || exit "1" - -case "${ext}" in - [0-9]) preconv "${file}" | refer -PS -e | groff -mandoc -T pdf > "${base}.pdf" ;; - c) cc "${file}" -o "${base}" && "./${base}" ;; - cpp) g++ "${file}" -o "${base}" && "./${base}" ;; - go) go run "${file}" ;; - h) sudo make install ;; - java) javac -d classes "${file}" && java -cp classes "${base}" ;; - md) [ -x "$(command -v lowdown)" ] && \ - lowdown --parse-no-intraemph "${file}" -Tms | groff -mpdfmark -ms -kept -T pdf > "${base}.pdf" || \ - [ -x "$(command -v groffdown)" ] && \ - groffdown -i "${file}" | groff -T pdf > "${base}.pdf" || \ - pandoc -t ms --highlight-style="kate" -s -o "${base}.pdf" "${file}" ;; - py) python "${file}" ;; - rs) cargo build ;; - ty) typst compile "$file" ;; - *) sed -n '/^#!/s/^#!//p; q' "${file}" | xargs -r -I % "${file}" ;; -esac diff --git a/local/.local/bin/pkg-install b/local/.local/bin/pkg-install deleted file mode 100755 index 1752c64..0000000 --- a/local/.local/bin/pkg-install +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -pkgs="$@" -installer="echo \"error: something went wrong\" ; exit 1" - -check() { - command -v "$1" >/dev/null 2>&1 -} - -if check xbps-install; then - installer="sudo xbps-install -Syu" -elif check pacman; then - installer="sudo pacman -Syu" -elif check apt; then - installer="sudo apt install -y" -elif check dnf; then - installer="sudo dnf install -y" -elif check brew; then - installer="brew install" -else - echo "error: could not find package manager." ; exit 1 -fi - -$installer $pkgs && echo "done." && exit 0 -exit 1 diff --git a/local/.local/bin/pkg-remove b/local/.local/bin/pkg-remove deleted file mode 100755 index 6b17866..0000000 --- a/local/.local/bin/pkg-remove +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -pkgs="$@" -installer="echo \"error: something went wrong\" ; exit 1" - -check() { - command -v "$1" >/dev/null 2>&1 -} - -if check xbps-remove; then - installer="sudo xbps-remove" -elif check pacman; then - installer="sudo pacman -R" -elif check apt; then - installer="sudo apt remove" -elif check dnf; then - installer="sudo dnf remove" -elif check brew; then - installer="brew remove" -else - echo "error: could not find package manager." ; exit 1 -fi - -$installer $pkgs && echo "done." && exit 0 -exit 1 diff --git a/plug.sh b/plug.sh deleted file mode 100755 index db0d254..0000000 --- a/plug.sh +++ /dev/null @@ -1 +0,0 @@ -zsh <(curl -s https://raw.githubusercontent.com/zap-zsh/zap/master/install.zsh) --branch release-v1 diff --git a/stdpkg b/stdpkg deleted file mode 100644 index ef01de0..0000000 --- a/stdpkg +++ /dev/null @@ -1,5 +0,0 @@ -stow -curl -zsh -starship -tmux