This commit is contained in:
Patrick Alvin Alcala 2026-03-24 11:47:24 +08:00
parent 4a8e118d23
commit 515f71f78c
3 changed files with 18 additions and 11 deletions

20
.bashrc
View file

@ -21,12 +21,12 @@
# Load modular configarion # Load modular configarion
# ----------------------------------------------------- # -----------------------------------------------------
for f in ~/.config/bashrc/*; do #for f in ~/.config/bashrc/*; do
if [ ! -d $f ]; then # if [ ! -d $f ]; then
c=$(echo $f | sed -e "s=.config/bashrc=.config/bashrc/custom=") # c=$(echo $f | sed -e "s=.config/bashrc=.config/bashrc/custom=")
[[ -f $c ]] && source $c || source $f # [[ -f $c ]] && source $c || source $f
fi # fi
done #done
# ----------------------------------------------------- # -----------------------------------------------------
# Load single customization file (if exists) # Load single customization file (if exists)
@ -35,8 +35,8 @@ done
if [ -f ~/.bashrc_custom ]; then if [ -f ~/.bashrc_custom ]; then
source ~/.bashrc_custom source ~/.bashrc_custom
fi fi
. "/home/patrick/.deno/env" #. "/home/patrick/.deno/env"
source /home/patrick/.local/share/bash-completion/completions/deno.bash #source /home/patrick/.local/share/bash-completion/completions/deno.bash
alias xi="sudo xbps-install -S" #alias xi="sudo xbps-install -S"
alias ls="lsd -l" #alias ls="lsd -l"

View file

@ -21,6 +21,11 @@ return {
["underline"] = false ["underline"] = false
} }
}, },
["disabled_plugins"] = {},
["enabled_plugins"] = {
["drawwhitespace"] = true,
["editorconfig"] = true
},
["font"] = { ["font"] = {
["fonts"] = { ["fonts"] = {
[1] = { [1] = {
@ -39,10 +44,11 @@ return {
["underline"] = false ["underline"] = false
} }
}, },
["fps"] = 60, ["fps"] = 120,
["max_tabs"] = 8, ["max_tabs"] = 8,
["plugins"] = { ["plugins"] = {
["code_plus"] = { ["code_plus"] = {
["enabled"] = true,
["fixme"] = { ["fixme"] = {
[1] = 239, [1] = 239,
[2] = 99, [2] = 99,

1
.zshrc
View file

@ -308,6 +308,7 @@ alias podia="podman image ls -a"
alias podir="podman image rm -f" alias podir="podman image rm -f"
alias podup="podman-compose up -d" alias podup="podman-compose up -d"
alias poddown="podman-compose down" alias poddown="podman-compose down"
alias podclr="podman image prune"
alias sshconf="sudo vim /etc/ssh/sshd_config" alias sshconf="sudo vim /etc/ssh/sshd_config"
alias sshr="sudo systemctl restart sshd" alias sshr="sudo systemctl restart sshd"