aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-16 10:31:51 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-16 10:31:51 +0100
commit2ac37d39f039428d4d1760429846ee2340b9fd10 (patch)
treed0a8711643ae657a9db9e0737160b5621abfc301
parent702e2e031a14b6c11836a5f72a9128e0033949a8 (diff)
downloaddotfiles-2ac37d39f039428d4d1760429846ee2340b9fd10.tar.gz
Update
-rw-r--r--.feeds.txt1
-rwxr-xr-x.shenanigans.sh6
-rw-r--r--.vimrc3
3 files changed, 9 insertions, 1 deletions
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
8https://offbeatpursuit.com/blog/index.rss 8https://offbeatpursuit.com/blog/index.rss
9https://tomscii.sig7.se/feed.xml 9https://tomscii.sig7.se/feed.xml
10https://www.computerenhance.com/feed 10https://www.computerenhance.com/feed
11https://susam.net/feed.xml
11 12
12https://github.com/srevinsaju/Brave-AppImage/releases.atom 13https://github.com/srevinsaju/Brave-AppImage/releases.atom
13https://github.com/X11Libre/xserver/releases.atom 14https://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() {
82mic_status() { 83mic_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
87slugify() {
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
index d7328d0..133ffe5 100644
--- a/.vimrc
+++ b/.vimrc
@@ -3,7 +3,6 @@ filetype plugin on
3 3
4call plug#begin() 4call 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>
22nnoremap <C-b> :CtrlPBuffer<CR> 21nnoremap <C-b> :CtrlPBuffer<CR>
23nnoremap <C-k> :ALEHover<CR> 22nnoremap <C-k> :ALEHover<CR>
24nnoremap <C-j> :ALEDetail<CR> 23nnoremap <C-j> :ALEDetail<CR>
24nnoremap <M-Right> :cnext<CR>
25nnoremap <M-Left> :cprevious<CR>
25nnoremap <Leader>d :bd<CR> 26nnoremap <Leader>d :bd<CR>
26nnoremap <leader>t :term<CR> 27nnoremap <leader>t :term<CR>
27nnoremap <Leader>q :nohlsearch<CR> 28nnoremap <Leader>q :nohlsearch<CR>