diff --git a/.feeds.txt b/.feeds.txt index 9dac07ac8e7cbabf92b76ae701696d64cdea7277..96ced5a54904054d8f93b53cff077d034c0657ce 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 d49b42d8e44d2afa72d61ff9cffb2dbc0cafad42..907b6a3c4e41d87366d52a0fb6198d504e09223a 100755 --- a/.shenanigans.sh +++ b/.shenanigans.sh @@ -30,6 +30,7 @@ alias l='ls -lh --group-directories-first --color=always' 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 @@ 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 d7328d0e284bd23e2c5aa9056ca4e8ebae8b6d2d..133ffe50634bd7631f552aa5ab8efe0a8b6f5233 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