🔧 Massive update to personal gentoo configs

This commit is contained in:
tomit4 2025-12-03 02:44:11 -08:00
parent 505f6363ab
commit 6686861b86
497 changed files with 29421 additions and 7191 deletions

View file

@ -0,0 +1,48 @@
---
name: Bug report
about: Always include a minimal, reproducible test case. If I cannot reproduce it, then I cannot fix it!
title: ''
labels: type::bug report
assignees: ''
---
## Environment
<!-- Run the code below and share the output. -->
```zsh
% typeset -p1 VENDOR OSTYPE ZSH_PATCHLEVEL _autocomplete__funcfiletrace
<output>
% git -C ~autocomplete log --oneline -n1
<output>
```
* Operating system: <!-- for example, 'macOS Ventura 13.4' or 'Ubuntu 22.04.2 LTS' -->
* Terminal emulator: <!-- for example, 'Terminal.app' or 'Konsole' -->
## Steps to reproduce
<!-- Update the code below to create a test case that demonstrates the problem
in an isolated environment. -->
```zsh
% cd $(mktemp -d)
% git clone --depth 1 -- https://github.com/marlonrichert/zsh-autocomplete.git
<output>
% > .zshrc <<EOF
setopt interactivecomments transientrprompt
PS1='%# '
PS2=
RPS2='%^'
source $PWD/zsh-autocomplete/zsh-autocomplete.plugin.zsh
EOF
% env -i HOME=$PWD PATH=$PATH TERM=$TERM ${TERMINFO:+TERMINFO=$TERMINFO} zsh -d
% <inputs>
<output>
```
<details>
<summary>Contents of <code>~autocomplete-log/YYYY-MM-DD.log</code> (click to expand)</summary>
<pre>
<!-- Replace this line with the contents of the above log file. -->
</pre>
</details>

View file

@ -0,0 +1 @@
blank_issues_enabled: false

View file

@ -0,0 +1,32 @@
---
name: Feature request
about: If this template doesn't suit your needs, then please open a Discussion instead.
title: ''
labels: type::feature request
assignees: ''
---
## What do you want?
<!-- Give a brief summary of the feature. -->
## Why do you want this?
<!-- Explain what you would use this for or how this would enhance your experience. -->
## Who else would benefit from this?
<!-- Describe what kind of users would enjoy this feature. -->
## How should it work?
<!-- Fill out the steps below. -->
Given the following situation:
* <!-- State the circumstances under which this feature would apply. -->
*
When I perform the following steps:
1. <!-- List what actions you would take in the situation described above. -->
1. <!-- Numbering is automatic. -->
Then I expect the following to happen:
* <!-- Describe how you would expect the system to behave in response to your actions above. -->
*