|
diff --git a/.feeds.txt b/.feeds.txt
|
| ... |
| 24 |
https://www.duskborn.com/index.xml |
24 |
https://www.duskborn.com/index.xml |
| 25 |
https://mirzapandzo.com/rss.xml |
25 |
https://mirzapandzo.com/rss.xml |
| 26 |
https://mitjafelicijan.com/feed.xml |
26 |
https://mitjafelicijan.com/feed.xml |
|
|
27 |
https://offbeatpursuit.com/blog/index.rss |
| 27 |
|
28 |
|
| 28 |
https://crawl.develz.org/wordpress/feed |
29 |
https://crawl.develz.org/wordpress/feed |
| 29 |
https://go.dev/blog/feed.atom |
30 |
https://go.dev/blog/feed.atom |
| ... |
|
diff --git a/.shenanigans.sh b/.shenanigans.sh
|
| 1 |
# Software list: |
1 |
# Software list: |
| 2 |
# git gcc make cmake busybox cifs-utils tree hstr curl |
2 |
# git gcc make cmake busybox cifs-utils tree hstr curl |
| 3 |
# s3cmd xmlstarlet htop nvtop tmux xclip mc ripgrep jq pipx |
3 |
# s3cmd xmlstarlet htop nvtop tmux xclip mc jq pipx |
| 4 |
# stow rsync entr vim xxd sbcl rlwrap podman podman-compose |
4 |
# stow rsync entr vim xxd sbcl rlwrap newsboat |
| 5 |
# clang clang-tidy clang-tools-extra clangd clang-analyzer |
5 |
# clang clang-tidy clang-tools-extra clangd clang-analyzer |
| 6 |
# Additonal stuff: |
6 |
# Additonal stuff: |
| 7 |
# pipx install pyright |
7 |
# pipx install pyright |
| ... |
| 40 |
alias tmux='tmux -u' |
40 |
alias tmux='tmux -u' |
| 41 |
alias vi='vim' |
41 |
alias vi='vim' |
| 42 |
alias server='python3 -m http.server 6969' |
42 |
alias server='python3 -m http.server 6969' |
|
|
43 |
alias newsboat='newsboat -r -u ~/.feeds.txt' |
| 43 |
alias gg='lazygit' |
44 |
alias gg='lazygit' |
| 44 |
alias newsbarge='newsbarge -feed-file=/home/m/.feeds.txt -out-dir=/home/m/Downloads -days-span=7' |
|
|
| 45 |
|
45 |
|
| 46 |
# Custom folder jump commands. |
46 |
# Custom folder jump commands. |
| 47 |
alias p='cd ~/Vault/projects' |
47 |
alias p='cd ~/Vault/projects' |
| ... |
| 53 |
export PATH=$HOME/go/bin:$PATH |
53 |
export PATH=$HOME/go/bin:$PATH |
| 54 |
export PATH=$HOME/.local/bin:$PATH |
54 |
export PATH=$HOME/.local/bin:$PATH |
| 55 |
export PATH=/usr/local/go/bin:$PATH |
55 |
export PATH=/usr/local/go/bin:$PATH |
| 56 |
|
|
|
| 57 |
# Language servers. |
|
|
| 58 |
export PATH=$HOME/.local/bin/luals/bin:$PATH |
|
|
| 59 |
|
|
|
| 60 |
# Other stuff. |
|
|
| 61 |
export PATH=$HOME/Applications/riscv-gnu-toolchain/bin:$PATH |
|
|
| 62 |
export PATH=$HOME/Applications/xtensa-lx106-elf/bin:$PATH |
|
|
| 63 |
|
56 |
|
| 64 |
# History and search. Stolen from J. |
57 |
# History and search. Stolen from J. |
| 65 |
HISTCONTROL=ignoreboth |
58 |
HISTCONTROL=ignoreboth |
| ... |