From 515f71f78c3dea4966ccfe5bfb2db5ac724e22ab Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Tue, 24 Mar 2026 11:47:24 +0800 Subject: [PATCH] Updated --- .bashrc | 20 ++++++++++---------- .config/lite-xl/user_settings.lua | 8 +++++++- .zshrc | 1 + 3 files changed, 18 insertions(+), 11 deletions(-) diff --git a/.bashrc b/.bashrc index 0aebc2d..2bd36ce 100644 --- a/.bashrc +++ b/.bashrc @@ -21,12 +21,12 @@ # Load modular configarion # ----------------------------------------------------- -for f in ~/.config/bashrc/*; do - if [ ! -d $f ]; then - c=$(echo $f | sed -e "s=.config/bashrc=.config/bashrc/custom=") - [[ -f $c ]] && source $c || source $f - fi -done +#for f in ~/.config/bashrc/*; do +# if [ ! -d $f ]; then +# c=$(echo $f | sed -e "s=.config/bashrc=.config/bashrc/custom=") +# [[ -f $c ]] && source $c || source $f +# fi +#done # ----------------------------------------------------- # Load single customization file (if exists) @@ -35,8 +35,8 @@ done if [ -f ~/.bashrc_custom ]; then source ~/.bashrc_custom fi -. "/home/patrick/.deno/env" -source /home/patrick/.local/share/bash-completion/completions/deno.bash +#. "/home/patrick/.deno/env" +#source /home/patrick/.local/share/bash-completion/completions/deno.bash -alias xi="sudo xbps-install -S" -alias ls="lsd -l" +#alias xi="sudo xbps-install -S" +#alias ls="lsd -l" diff --git a/.config/lite-xl/user_settings.lua b/.config/lite-xl/user_settings.lua index 515a542..25e1a36 100644 --- a/.config/lite-xl/user_settings.lua +++ b/.config/lite-xl/user_settings.lua @@ -21,6 +21,11 @@ return { ["underline"] = false } }, + ["disabled_plugins"] = {}, + ["enabled_plugins"] = { + ["drawwhitespace"] = true, + ["editorconfig"] = true + }, ["font"] = { ["fonts"] = { [1] = { @@ -39,10 +44,11 @@ return { ["underline"] = false } }, - ["fps"] = 60, + ["fps"] = 120, ["max_tabs"] = 8, ["plugins"] = { ["code_plus"] = { + ["enabled"] = true, ["fixme"] = { [1] = 239, [2] = 99, diff --git a/.zshrc b/.zshrc index a1c11f1..c72441f 100644 --- a/.zshrc +++ b/.zshrc @@ -308,6 +308,7 @@ alias podia="podman image ls -a" alias podir="podman image rm -f" alias podup="podman-compose up -d" alias poddown="podman-compose down" +alias podclr="podman image prune" alias sshconf="sudo vim /etc/ssh/sshd_config" alias sshr="sudo systemctl restart sshd"