|
diff --git a/.config/i3/config b/.config/i3/config
|
| ... |
| 168 |
for_window [workspace="^(1|5)$"] floating enable |
168 |
for_window [workspace="^(1|5)$"] floating enable |
| 169 |
|
169 |
|
| 170 |
# Expections for opening in floating mode where XSetClassHint is set to floating |
170 |
# Expections for opening in floating mode where XSetClassHint is set to floating |
| 171 |
for_window [class="^(floating|mpv|SimpleScreenRecorder|Thunar|transmission|Xmagnify)$"] floating enable |
171 |
for_window [class="^(mpv|Thunar|transmission|Xmagnify)$"] floating enable |
| 172 |
for_window [title="^(Stalag|game)$"] floating enable |
172 |
for_window [title="^(floating|game|iceworks)$"] floating enable |
|
diff --git a/.feeds.txt b/.feeds.txt
|
| ... |
| 19 |
https://www.youtube.com/feeds/videos.xml?channel_id=UCmtyQOKKmrMVaKuRXz02jbQ |
19 |
https://www.youtube.com/feeds/videos.xml?channel_id=UCmtyQOKKmrMVaKuRXz02jbQ |
| 20 |
https://www.youtube.com/feeds/videos.xml?channel_id=UCAMu6Dso0ENoNm3sKpQsy0g |
20 |
https://www.youtube.com/feeds/videos.xml?channel_id=UCAMu6Dso0ENoNm3sKpQsy0g |
| 21 |
https://www.youtube.com/feeds/videos.xml?channel_id=UC6dKynwWVCYOcyllwU8aAaA |
21 |
https://www.youtube.com/feeds/videos.xml?channel_id=UC6dKynwWVCYOcyllwU8aAaA |
|
|
22 |
https://www.youtube.com/feeds/videos.xml?channel_id=UCB2ATFiszUNmw6z1x67GnYw |
|
diff --git a/.shenanigans.sh b/.shenanigans.sh
|
| ... |
| 52 |
export PATH="$PATH:$HOME/.cargo/bin" |
52 |
export PATH="$PATH:$HOME/.cargo/bin" |
| 53 |
export PATH="$PATH:$HOME/go/bin" |
53 |
export PATH="$PATH:$HOME/go/bin" |
| 54 |
export PATH="$PATH:$HOME/Applications" |
54 |
export PATH="$PATH:$HOME/Applications" |
|
|
55 |
export PATH="$PATH:$HOME/.local/bin/zig" |
|
|
56 |
export PATH="$PATH:$HOME/.local/bin/c3" |
| 55 |
fi |
57 |
fi |
| 56 |
|
58 |
|
| 57 |
backup() { |
59 |
backup() { |
| ... |
|
diff --git a/.vimrc b/.vimrc
|
| ... |
| 4 |
call plug#begin() |
4 |
call plug#begin() |
| 5 |
Plug 'tpope/vim-commentary' |
5 |
Plug 'tpope/vim-commentary' |
| 6 |
Plug 'mitjafelicijan/sniper.vim' |
6 |
Plug 'mitjafelicijan/sniper.vim' |
|
|
7 |
Plug 'mitjafelicijan/c3.vim' |
| 7 |
Plug 'ctrlpvim/ctrlp.vim' |
8 |
Plug 'ctrlpvim/ctrlp.vim' |
| 8 |
Plug 'dense-analysis/ale' |
9 |
Plug 'dense-analysis/ale' |
| 9 |
Plug 'airblade/vim-gitgutter' |
10 |
Plug 'airblade/vim-gitgutter' |
|
|
11 |
Plug 'madox2/vim-ai' |
| 10 |
call plug#end() |
12 |
call plug#end() |
| 11 |
|
13 |
|
| 12 |
set encoding=utf8 spelllang=en_us laststatus=2 tabstop=4 shiftwidth=4 |
14 |
set encoding=utf8 spelllang=en_us laststatus=2 tabstop=4 shiftwidth=4 |
| ... |
| 37 |
nnoremap <leader>t :term<CR> |
39 |
nnoremap <leader>t :term<CR> |
| 38 |
nnoremap <Leader>q :nohlsearch<CR> |
40 |
nnoremap <Leader>q :nohlsearch<CR> |
| 39 |
nnoremap <Leader>e :ALEPopulateQuickfix<CR>:sleep 100m<CR>:copen<CR> |
41 |
nnoremap <Leader>e :ALEPopulateQuickfix<CR>:sleep 100m<CR>:copen<CR> |
| 40 |
nnoremap <leader>w :silent! grep! <cword> \| cwindow \| redraw!<CR> |
42 |
nnoremap <leader>w :silent grep! -R "<C-r><C-w>" .<CR>:redraw!<CR>:copen<CR> |
| 41 |
|
43 |
|
| 42 |
nmap <silent> gr :ALEFindReferences -quickfix<CR>:sleep 100m<CR>:copen<CR> |
44 |
nmap <silent> gr :ALEFindReferences -quickfix<CR>:sleep 100m<CR>:copen<CR> |
| 43 |
nmap <silent> gd :ALEGoToDefinition<CR> |
45 |
nmap <silent> gd :ALEGoToDefinition<CR> |
| ... |