summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.chezmoiignore1
-rw-r--r--dot_config/beets/config.yaml11
-rw-r--r--dot_config/environment.d/.keep0
-rw-r--r--dot_config/environment.d/99-paths.conf10
-rw-r--r--dot_config/micro/syntax/.keep0
-rw-r--r--dot_config/micro/syntax/gemini.yaml23
-rw-r--r--dot_config/micro/syntax/rc.yaml32
-rw-r--r--dot_config/mpv/mpv.conf16
-rw-r--r--dot_config/mpv/script-opts/acompressor.conf1
-rw-r--r--dot_config/mpv/scripts/symlink_acompressor.lua1
-rw-r--r--dot_config/mpv/twitch-input.conf21
-rw-r--r--dot_config/private_fish/conf.d/yarn.fish4
-rw-r--r--dot_config/rofi/config9
-rw-r--r--dot_config/starship.toml1
-rw-r--r--dot_config/streamlink/config.tmpl11
-rw-r--r--dot_config/tmux/tmux.conf41
-rw-r--r--dot_local/share/gtksourceview-4/.keep0
-rw-r--r--dot_local/share/gtksourceview-4/language-specs/.keep0
-rw-r--r--dot_local/share/gtksourceview-4/language-specs/gemini.lang91
-rw-r--r--symlink_dot_tmux.conf1
-rw-r--r--update-subtrees.zsh11
21 files changed, 0 insertions, 285 deletions
diff --git a/.chezmoiignore b/.chezmoiignore
index cc002c4..cbbf4c0 100644
--- a/.chezmoiignore
+++ b/.chezmoiignore
@@ -1,2 +1 @@
UNLICENSE
-update-subtrees.zsh
diff --git a/dot_config/beets/config.yaml b/dot_config/beets/config.yaml
deleted file mode 100644
index 3c83952..0000000
--- a/dot_config/beets/config.yaml
+++ /dev/null
@@ -1,11 +0,0 @@
-directory: ~/Music
-library: ~/.local/share/beets.db
-incremental: yes
-
-plugins: bpd edit fetchart fromfilename info inline lastgenre mbsync replaygain scrub web
-
-bpd:
- password: musicalthrones
-
-replaygain:
- backend: gstreamer
diff --git a/dot_config/environment.d/.keep b/dot_config/environment.d/.keep
deleted file mode 100644
index e69de29..0000000
--- a/dot_config/environment.d/.keep
+++ /dev/null
diff --git a/dot_config/environment.d/99-paths.conf b/dot_config/environment.d/99-paths.conf
deleted file mode 100644
index 09aa825..0000000
--- a/dot_config/environment.d/99-paths.conf
+++ /dev/null
@@ -1,10 +0,0 @@
-CARGO_HOME=$HOME/.local/cargo
-DENO_DIR=$HOME/.local/deno
-LUAROCKS_CONFIG=$HOME/.config/luarocks/config.lua
-PIPX_BIN_DIR=$HOME/.local/pipx/bin
-
-JUMP_HOME=$HOME/.local/share/jump
-RLWRAP_HOME=$HOME/.local/share/rlwrap
-
-MANPATH=$HOME/.local/share/man:/usr/local/share/man:/usr/share/man
-TERMINFO_DIRS=$HOME/.local/share/terminfo:/usr/local/share/terminfo:/etc/terminfo:
diff --git a/dot_config/micro/syntax/.keep b/dot_config/micro/syntax/.keep
deleted file mode 100644
index e69de29..0000000
--- a/dot_config/micro/syntax/.keep
+++ /dev/null
diff --git a/dot_config/micro/syntax/gemini.yaml b/dot_config/micro/syntax/gemini.yaml
deleted file mode 100644
index 40ba789..0000000
--- a/dot_config/micro/syntax/gemini.yaml
+++ /dev/null
@@ -1,23 +0,0 @@
-filetype: gemini
-
-detect:
- filename: "(\\.gmi$|\\.gemini$)"
-
-rules:
- # links
- - constant: "^=>"
-
- # preformatted toggles/lines
- - special:
- start: "^```"
- end: "^```"
- rules: []
-
- # headings
- - special: "^#{1,3}.*$"
-
- # unordered lists
- - identifier: "^\\* "
-
- # quotes
- - statement: "^>.*$"
diff --git a/dot_config/micro/syntax/rc.yaml b/dot_config/micro/syntax/rc.yaml
deleted file mode 100644
index 62b0c85..0000000
--- a/dot_config/micro/syntax/rc.yaml
+++ /dev/null
@@ -1,32 +0,0 @@
-filetype: p9rc
-
-# this is all buggy and shitty but it's better than nothing lmao
-
-detect:
- filename: ".rc$"
- header: "^#!.*/(env +)?rc( |$)"
-
-rules:
- # Flow control
- - statement: "\\b(if|else|while|for|in|switch|case|fn)\\b"
-
- # Logical operators
- - special: "(\\!|\\|\\||&&|~|\\^|=|`)"
-
- # Builtins
- - type: "\\b(\\.|break|builtin|cd|continue|echo|eval|exec|exit|flag|limit|newgrp|return|shift|umask|wait|whatis)\\b"
-
- # Variables
- - identifier: "\\$(\"|\\^)?[0-9A-Za-z_!@#$*?-]+(\\([^\\)]*\\))?"
-
- # String literals
- - constant.string:
- start: "'"
- end: "'"
- rules: []
-
- - comment:
- start: "(^|\\s)#"
- end: "$"
- rules:
- - todo: "(TODO|XXX|FIXME):?"
diff --git a/dot_config/mpv/mpv.conf b/dot_config/mpv/mpv.conf
deleted file mode 100644
index a931bad..0000000
--- a/dot_config/mpv/mpv.conf
+++ /dev/null
@@ -1,16 +0,0 @@
-[default]
-volume=80
-
-hwdec=auto-safe
-
-ao=pulse
-vo=gpu
-gpu-api=vulkan
-video-sync=display-resample
-
-screenshot-format=png
-screenshot-directory=~/Pictures/Screenshots/mpv
-
-[twitch]
-osc=no
-input-conf=~/.config/mpv/twitch-input.conf
diff --git a/dot_config/mpv/script-opts/acompressor.conf b/dot_config/mpv/script-opts/acompressor.conf
deleted file mode 100644
index 892c0ba..0000000
--- a/dot_config/mpv/script-opts/acompressor.conf
+++ /dev/null
@@ -1 +0,0 @@
-default_enable=yes
diff --git a/dot_config/mpv/scripts/symlink_acompressor.lua b/dot_config/mpv/scripts/symlink_acompressor.lua
deleted file mode 100644
index c3ab129..0000000
--- a/dot_config/mpv/scripts/symlink_acompressor.lua
+++ /dev/null
@@ -1 +0,0 @@
-/usr/share/mpv/scripts/acompressor.lua \ No newline at end of file
diff --git a/dot_config/mpv/twitch-input.conf b/dot_config/mpv/twitch-input.conf
deleted file mode 100644
index 46aea4c..0000000
--- a/dot_config/mpv/twitch-input.conf
+++ /dev/null
@@ -1,21 +0,0 @@
-WHEEL_UP ignore
-WHEEL_DOWN ignore
-RIGHT ignore
-LEFT ignore
-UP ignore
-DOWN ignore
-Shift+RIGHT ignore
-Shift+LEFT ignore
-Shift+UP ignore
-Shift+DOWN ignore
-Ctrl+LEFT ignore
-Ctrl+RIGHT ignore
-Shift+PGUP ignore
-Shift+PGDWN ignore
-Shift+BS ignore
-Shift+Ctrl+BS ignore
-FORWARD ignore
-REWIND ignore
-NEXT ignore
-PREV ignore
-l ignore
diff --git a/dot_config/private_fish/conf.d/yarn.fish b/dot_config/private_fish/conf.d/yarn.fish
deleted file mode 100644
index dda4459..0000000
--- a/dot_config/private_fish/conf.d/yarn.fish
+++ /dev/null
@@ -1,4 +0,0 @@
-if type -qf yarn && ! test -f ~/.yarnrc
- yarn config set global-folder ~/.local/yarn/global
- yarn config set prefix ~/.local/yarn
-end
diff --git a/dot_config/rofi/config b/dot_config/rofi/config
deleted file mode 100644
index b495912..0000000
--- a/dot_config/rofi/config
+++ /dev/null
@@ -1,9 +0,0 @@
-rofi.combi-modi: ssh,drun
-rofi.font: Hack 15
-rofi.matching: fuzzy
-rofi.modi: combi,run
-rofi.parse-known-hosts: true
-rofi.sort: true
-rofi.sorting-method: fzf
-rofi.terminal: alacritty
-rofi.theme: /usr/share/rofi/themes/Pop-Dark.rasi
diff --git a/dot_config/starship.toml b/dot_config/starship.toml
deleted file mode 100644
index 3057f34..0000000
--- a/dot_config/starship.toml
+++ /dev/null
@@ -1 +0,0 @@
-add_newline = false
diff --git a/dot_config/streamlink/config.tmpl b/dot_config/streamlink/config.tmpl
deleted file mode 100644
index 3473a77..0000000
--- a/dot_config/streamlink/config.tmpl
+++ /dev/null
@@ -1,11 +0,0 @@
-player=mpv
-verbose-player
-
-{{- $laptops := list "laptoast" "toastbp" -}}
-{{ if has (.chezmoi.hostname | lower) $laptops }}
-default-stream=720p,720p60,1080p60,best
-{{ else }}
-default-stream=best
-{{ end -}}
-
-player-passthrough=hls,http,rtmp
diff --git a/dot_config/tmux/tmux.conf b/dot_config/tmux/tmux.conf
deleted file mode 100644
index 5b0f01f..0000000
--- a/dot_config/tmux/tmux.conf
+++ /dev/null
@@ -1,41 +0,0 @@
-# --- obvious settings ---
-# basics
-set -g default-terminal "tmux-256color" # colors
-set -g mouse on # mouse mode
-set -sg escape-time 10 # fix vim
-set -g xterm-keys on # ctrl-arrows, others...
-
-# 0 is very far away from 1
-set -g base-index 1
-set -g pane-base-index 1
-
-# terminal titles
-set -g set-titles on
-set -g set-titles-string "#T"
-
-# true colors
-set -ga terminal-overrides ",alacritty:RGB"
-set -ga terminal-overrides ",foot:RGB"
-set -ga terminal-overrides ",*256col*:RGB"
-set -ga terminal-overrides ",xterm-kitty:RGB"
-
-# --- keybinds ---
-# splitting
-bind | split-window -h
-bind - split-window -v
-unbind '"'
-unbind %
-
-# alt-direction to switch panes
-bind -n M-Left select-pane -L
-bind -n M-Right select-pane -R
-bind -n M-Up select-pane -U
-bind -n M-Down select-pane -D
-
-# convenience
-bind r source-file ~/.config/tmux/tmux.conf
-
-# local conf
-source-file -q ~/.config/tmux/local.tmux
-
-# vim: ft=tmux
diff --git a/dot_local/share/gtksourceview-4/.keep b/dot_local/share/gtksourceview-4/.keep
deleted file mode 100644
index e69de29..0000000
--- a/dot_local/share/gtksourceview-4/.keep
+++ /dev/null
diff --git a/dot_local/share/gtksourceview-4/language-specs/.keep b/dot_local/share/gtksourceview-4/language-specs/.keep
deleted file mode 100644
index e69de29..0000000
--- a/dot_local/share/gtksourceview-4/language-specs/.keep
+++ /dev/null
diff --git a/dot_local/share/gtksourceview-4/language-specs/gemini.lang b/dot_local/share/gtksourceview-4/language-specs/gemini.lang
deleted file mode 100644
index c9278f5..0000000
--- a/dot_local/share/gtksourceview-4/language-specs/gemini.lang
+++ /dev/null
@@ -1,91 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- v0.14.2 -->
-<language id="gemini" name="Gemini" version="2.0" _section="Markup">
- <metadata>
- <property name="mimetypes">text/gemini</property>
- <property name="globs">*.gmi</property>
- </metadata>
-
- <styles>
- <style id="link-marker" name="Link Marker" map-to="def:link-symbol" />
- <style id="link" name="Link" map-to="def:link-destination" />
- <style id="link-title" name="Link Title" map-to="def:link-text" />
-
- <style id="pre" name="Preformatted" map-to="def:preformatted-section" />
- <style id="pre-alt" name="Preformatted Alt Text" map-to="def:emphasis" />
-
- <style id="header" name="Header" map-to="def:heading" />
-
- <style id="list" name="Unordered List" map-to="def:list-marker" />
-
- <style id="blockquote" name="Blockquote" map-to="def:insertion" />
- </styles>
-
- <definitions>
- <!-- Examples:
- => url Link
- => url
- =>url Link
- =>url
- -->
- <context id="link">
- <match extended="true">
- ^
- (=>) # identifier
- [ ]? # optional whitespace
- (\S+) # the link
- ( .*)? # the title
- $
- </match>
- <include>
- <context sub-pattern="1" style-ref="link-marker" />
- <context sub-pattern="2" class="no-spell-check" style-ref="link" />
- <context sub-pattern="3" style-ref="link-title" />
- </include>
- </context>
-
- <!-- Starts with ``` and ends with ``` -->
- <context id="pre" class="no-spell-check" style-ref="pre">
- <start>^```(.*)$</start>
- <end>^```</end> <!-- technically it's not valid to have anything after this, but the failure conditional is undesirable -->
- <include>
- <context sub-pattern="1" where="start" style-ref="pre-alt" />
- </include>
- </context>
-
- <!-- Examples:
- # Header 1
- ## Header 2
- ###Header 3
- -->
- <context id="header" style-ref="header">
- <match>^#{1,3}.+$</match>
- </context>
-
- <!-- Examples:
- * list1
- * list2
- -->
- <context id="list" style-ref="list">
- <match>^\* </match>
- </context>
-
- <!-- Examples:
- > line1
- > an entirely unrelated line
- -->
- <context id="blockquote" style-ref="blockquote">
- <match>^>.+$</match>
- </context>
-
- <context id="gemini">
- <include>
- <context ref="link" />
- <context ref="pre" />
- <context ref="header" />
- <context ref="list" />
- <context ref="blockquote" />
- </include>
- </context>
- </definitions>
-</language>
diff --git a/symlink_dot_tmux.conf b/symlink_dot_tmux.conf
deleted file mode 100644
index 9e5901d..0000000
--- a/symlink_dot_tmux.conf
+++ /dev/null
@@ -1 +0,0 @@
-.config/tmux/tmux.conf \ No newline at end of file
diff --git a/update-subtrees.zsh b/update-subtrees.zsh
deleted file mode 100644
index 3af1ab2..0000000
--- a/update-subtrees.zsh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/zsh
-
-# example:
-# dot_local/share/toasty https://github.com/cosmictoast/toasty-zsh
-subtrees=(
-)
-
-for key val in ${(kv)subtrees}
-do
- chezmoi source -- subtree pull -P $key $val master --squash
-done