|
diff --git a/.feeds.txt b/.feeds.txt
|
| ... |
| 8 |
https://offbeatpursuit.com/blog/index.rss |
8 |
https://offbeatpursuit.com/blog/index.rss |
| 9 |
https://tomscii.sig7.se/feed.xml |
9 |
https://tomscii.sig7.se/feed.xml |
| 10 |
https://www.computerenhance.com/feed |
10 |
https://www.computerenhance.com/feed |
|
|
11 |
https://susam.net/feed.xml |
| 11 |
|
12 |
|
| 12 |
https://github.com/srevinsaju/Brave-AppImage/releases.atom |
13 |
https://github.com/srevinsaju/Brave-AppImage/releases.atom |
| 13 |
https://github.com/X11Libre/xserver/releases.atom |
14 |
https://github.com/X11Libre/xserver/releases.atom |
|
diff --git a/.shenanigans.sh b/.shenanigans.sh
|
| ... |
| 30 |
alias ll='ls -lha --group-directories-first --color=always' |
30 |
alias ll='ls -lha --group-directories-first --color=always' |
| 31 |
alias t='tree -L 2' |
31 |
alias t='tree -L 2' |
| 32 |
alias ..='cd ..' |
32 |
alias ..='cd ..' |
|
|
33 |
alias gg='lazygit' |
| 33 |
alias less='less -R' |
34 |
alias less='less -R' |
| 34 |
alias tmux='tmux -u' |
35 |
alias tmux='tmux -u' |
| 35 |
alias server='python3 -m http.server 6969' |
36 |
alias server='python3 -m http.server 6969' |
| ... |
| 82 |
mic_status() { |
83 |
mic_status() { |
| 83 |
pactl get-source-mute @DEFAULT_SOURCE@ | grep -q "no" && echo 1 || echo 0; |
84 |
pactl get-source-mute @DEFAULT_SOURCE@ | grep -q "no" && echo 1 || echo 0; |
| 84 |
} |
85 |
} |
|
|
86 |
|
|
|
87 |
slugify() { |
|
|
88 |
local text="$1" |
|
|
89 |
echo "$text" | tr '[:upper:]' '[:lower:]' | sed -E 's/[^a-z0-9]+/-/g; s/^-+|-+$//g' |
|
|
90 |
} |
|
diff --git a/.vimrc b/.vimrc
|
| ... |
| 3 |
|
3 |
|
| 4 |
call plug#begin() |
4 |
call plug#begin() |
| 5 |
Plug 'tpope/vim-commentary' |
5 |
Plug 'tpope/vim-commentary' |
| 6 |
Plug 'tpope/vim-fugitive' |
|
|
| 7 |
Plug 'mitjafelicijan/sniper.vim' |
6 |
Plug 'mitjafelicijan/sniper.vim' |
| 8 |
Plug 'ctrlpvim/ctrlp.vim' |
7 |
Plug 'ctrlpvim/ctrlp.vim' |
| 9 |
Plug 'dense-analysis/ale' |
8 |
Plug 'dense-analysis/ale' |
| ... |
| 22 |
nnoremap <C-b> :CtrlPBuffer<CR> |
21 |
nnoremap <C-b> :CtrlPBuffer<CR> |
| 23 |
nnoremap <C-k> :ALEHover<CR> |
22 |
nnoremap <C-k> :ALEHover<CR> |
| 24 |
nnoremap <C-j> :ALEDetail<CR> |
23 |
nnoremap <C-j> :ALEDetail<CR> |
|
|
24 |
nnoremap <M-Right> :cnext<CR> |
|
|
25 |
nnoremap <M-Left> :cprevious<CR> |
| 25 |
nnoremap <Leader>d :bd<CR> |
26 |
nnoremap <Leader>d :bd<CR> |
| 26 |
nnoremap <leader>t :term<CR> |
27 |
nnoremap <leader>t :term<CR> |
| 27 |
nnoremap <Leader>q :nohlsearch<CR> |
28 |
nnoremap <Leader>q :nohlsearch<CR> |
| ... |