Misc updates

modified:   README.md
	modified:   bash/dot-bashrc
	modified:   git/dot-config/git/config
	new file:   helix/dot-config/helix/config.toml
	modified:   pet/dot-config/pet/snippet.toml
	renamed:    run.sh -> setup.sh
This commit is contained in:
2025-12-03 22:33:58 +01:00
parent 6475b15d70
commit 7c30e64c4b
6 changed files with 32 additions and 4 deletions

View File

@@ -17,6 +17,16 @@ stow --dotfiles --verbose stow
``` ```
This installs the `dot-stowrc` and global ignore list. This installs the `dot-stowrc` and global ignore list.
## Installing configs
```sh
stow <config-pkg-name>
```
`<config-pkg-name>` is just one of the directories of this repo.
To see what the effect would be without applying anything (dry-run):
```sh
stow -n <config-pkg-name>
```
## Included Configurations ## Included Configurations
* **Shells**: Bash, Fish, Zsh * **Shells**: Bash, Fish, Zsh

View File

@@ -137,8 +137,8 @@ eval "$(starship init bash)"
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
# Pagers # Pagers
export PAGER="$(which moar)" #export PAGER="$(which moar)"
export MANPAGER="$PAGER" # export MANPAGER="$PAGER"
# Github CLI aliases # Github CLI aliases
alias ghce="gh copilot explain" alias ghce="gh copilot explain"
@@ -148,9 +148,14 @@ alias ghcs="gh copilot suggest"
# broot does this now # broot does this now
# alias fcd='cd "$(dirname "$(fzf)")"' # alias fcd='cd "$(dirname "$(fzf)")"'
alias st='systemctl-tui' alias st='systemctl-tui'
alias task='./task.py'
# BEGIN hcloud # BEGIN hcloud
source <(hcloud completion bash) source <(hcloud completion bash)
# END hcloud # END hcloud
source /home/seb/.config/broot/launcher/bash/br source /home/seb/.config/broot/launcher/bash/br
[ -f "/home/seb/.ghcup/env" ] && . "/home/seb/.ghcup/env" # ghcup-env
alias nodeman='ssh hwsec nodeman'

View File

@@ -1,7 +1,9 @@
[user] [user]
name = Sebastian Lenzlinger name = Sebastian Lenzlinger
email = eswer@eswo.ch email = s.m.lenzlinger@student.vu.nl
[init] [init]
defaultBranch = main defaultBranch = devel
[core] [core]
editor = nvim editor = nvim
[gpg "ssh"]
allowedSignersFile = /home/seb/.ssh/allowed_signers

View File

@@ -0,0 +1,5 @@
theme = "yellowed"
[editor.cursor-shape]
insert = "bar"

View File

@@ -4,3 +4,9 @@
Output = "" Output = ""
Tag = ["superuser", "bash", "sh", "envvar"] Tag = ["superuser", "bash", "sh", "envvar"]
command = "sudo -E --shell" command = "sudo -E --shell"
[[Snippets]]
Description = "Preprocess slabinfo header so that columns align correctly"
Output = ""
Tag = []
command = "sed 's/# //' /proc/slabinfo | column -t"

View File