diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-16 10:31:51 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-16 10:31:51 +0100 |
| commit | 2ac37d39f039428d4d1760429846ee2340b9fd10 (patch) | |
| tree | d0a8711643ae657a9db9e0737160b5621abfc301 | |
| parent | 702e2e031a14b6c11836a5f72a9128e0033949a8 (diff) | |
| download | dotfiles-2ac37d39f039428d4d1760429846ee2340b9fd10.tar.gz | |
Update
| -rw-r--r-- | .feeds.txt | 1 | ||||
| -rwxr-xr-x | .shenanigans.sh | 6 | ||||
| -rw-r--r-- | .vimrc | 3 |
3 files changed, 9 insertions, 1 deletions
| @@ -8,6 +8,7 @@ https://www.duskborn.com/index.xml | |||
| 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 index d49b42d..907b6a3 100755 --- a/.shenanigans.sh +++ b/.shenanigans.sh | |||
| @@ -30,6 +30,7 @@ if [[ "${BASH_SOURCE[0]}" != "${0}" ]]; then | |||
| 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,3 +83,8 @@ backup() { | |||
| 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 | } | ||
| @@ -3,7 +3,6 @@ filetype plugin on | |||
| 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,6 +21,8 @@ nnoremap <C-q> :copen<CR> | |||
| 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> |
