From 2ac37d39f039428d4d1760429846ee2340b9fd10 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Fri, 16 Jan 2026 10:31:51 +0100 Subject: Update --- .feeds.txt | 1 + .shenanigans.sh | 6 ++++++ .vimrc | 3 ++- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.feeds.txt b/.feeds.txt index 9dac07a..96ced5a 100644 --- a/.feeds.txt +++ b/.feeds.txt @@ -8,6 +8,7 @@ https://www.duskborn.com/index.xml https://offbeatpursuit.com/blog/index.rss https://tomscii.sig7.se/feed.xml https://www.computerenhance.com/feed +https://susam.net/feed.xml https://github.com/srevinsaju/Brave-AppImage/releases.atom https://github.com/X11Libre/xserver/releases.atom diff --git a/.shenanigans.sh b/.shenanigans.sh index d49b42d..907b6a3 100755 --- a/.shenanigans.sh +++ b/.shenanigans.sh @@ -30,6 +30,7 @@ if [[ "${BASH_SOURCE[0]}" != "${0}" ]]; then alias ll='ls -lha --group-directories-first --color=always' alias t='tree -L 2' alias ..='cd ..' + alias gg='lazygit' alias less='less -R' alias tmux='tmux -u' alias server='python3 -m http.server 6969' @@ -82,3 +83,8 @@ backup() { mic_status() { pactl get-source-mute @DEFAULT_SOURCE@ | grep -q "no" && echo 1 || echo 0; } + +slugify() { + local text="$1" + echo "$text" | tr '[:upper:]' '[:lower:]' | sed -E 's/[^a-z0-9]+/-/g; s/^-+|-+$//g' +} diff --git a/.vimrc b/.vimrc index d7328d0..133ffe5 100644 --- a/.vimrc +++ b/.vimrc @@ -3,7 +3,6 @@ filetype plugin on call plug#begin() Plug 'tpope/vim-commentary' - Plug 'tpope/vim-fugitive' Plug 'mitjafelicijan/sniper.vim' Plug 'ctrlpvim/ctrlp.vim' Plug 'dense-analysis/ale' @@ -22,6 +21,8 @@ nnoremap :copen nnoremap :CtrlPBuffer nnoremap :ALEHover nnoremap :ALEDetail +nnoremap :cnext +nnoremap :cprevious nnoremap d :bd nnoremap t :term nnoremap q :nohlsearch -- cgit v1.2.3