mirror of
https://github.com/sebaschi/dotfiles.git
synced 2025-12-29 02:08:27 +01:00
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:
10
README.md
10
README.md
@@ -17,6 +17,16 @@ stow --dotfiles --verbose stow
|
||||
```
|
||||
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
|
||||
|
||||
* **Shells**: Bash, Fish, Zsh
|
||||
|
||||
@@ -137,8 +137,8 @@ eval "$(starship init bash)"
|
||||
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
|
||||
|
||||
# Pagers
|
||||
export PAGER="$(which moar)"
|
||||
export MANPAGER="$PAGER"
|
||||
#export PAGER="$(which moar)"
|
||||
# export MANPAGER="$PAGER"
|
||||
|
||||
# Github CLI aliases
|
||||
alias ghce="gh copilot explain"
|
||||
@@ -148,9 +148,14 @@ alias ghcs="gh copilot suggest"
|
||||
# broot does this now
|
||||
# alias fcd='cd "$(dirname "$(fzf)")"'
|
||||
alias st='systemctl-tui'
|
||||
alias task='./task.py'
|
||||
|
||||
# BEGIN hcloud
|
||||
source <(hcloud completion bash)
|
||||
# END hcloud
|
||||
|
||||
source /home/seb/.config/broot/launcher/bash/br
|
||||
|
||||
[ -f "/home/seb/.ghcup/env" ] && . "/home/seb/.ghcup/env" # ghcup-env
|
||||
|
||||
alias nodeman='ssh hwsec nodeman'
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
[user]
|
||||
name = Sebastian Lenzlinger
|
||||
email = eswer@eswo.ch
|
||||
email = s.m.lenzlinger@student.vu.nl
|
||||
[init]
|
||||
defaultBranch = main
|
||||
defaultBranch = devel
|
||||
[core]
|
||||
editor = nvim
|
||||
[gpg "ssh"]
|
||||
allowedSignersFile = /home/seb/.ssh/allowed_signers
|
||||
|
||||
5
helix/dot-config/helix/config.toml
Normal file
5
helix/dot-config/helix/config.toml
Normal file
@@ -0,0 +1,5 @@
|
||||
theme = "yellowed"
|
||||
|
||||
[editor.cursor-shape]
|
||||
insert = "bar"
|
||||
|
||||
@@ -4,3 +4,9 @@
|
||||
Output = ""
|
||||
Tag = ["superuser", "bash", "sh", "envvar"]
|
||||
command = "sudo -E --shell"
|
||||
|
||||
[[Snippets]]
|
||||
Description = "Preprocess slabinfo header so that columns align correctly"
|
||||
Output = ""
|
||||
Tag = []
|
||||
command = "sed 's/# //' /proc/slabinfo | column -t"
|
||||
|
||||
Reference in New Issue
Block a user