|
diff --git a/.config/i3/config b/.config/i3/config
|
| ... |
| 165 |
client.urgent $secondary $secondary $light $light |
165 |
client.urgent $secondary $secondary $light $light |
| 166 |
|
166 |
|
| 167 |
# Workspaces with only floating windows |
167 |
# Workspaces with only floating windows |
| 168 |
for_window [workspace="^(1|5)$"] floating enable |
168 |
for_window [workspace="^(5|6)$"] 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="^(mpv|Thunar|transmission|Xmagnify)$"] floating enable |
171 |
for_window [class="^(mpv|Thunar|transmission|Xmagnify)$"] floating enable |
| ... |
|
diff --git a/.feeds.txt b/.feeds.txt
|
| ... |
| 21 |
https://www.youtube.com/feeds/videos.xml?channel_id=UCAMu6Dso0ENoNm3sKpQsy0g |
21 |
https://www.youtube.com/feeds/videos.xml?channel_id=UCAMu6Dso0ENoNm3sKpQsy0g |
| 22 |
https://www.youtube.com/feeds/videos.xml?channel_id=UC6dKynwWVCYOcyllwU8aAaA |
22 |
https://www.youtube.com/feeds/videos.xml?channel_id=UC6dKynwWVCYOcyllwU8aAaA |
| 23 |
https://www.youtube.com/feeds/videos.xml?channel_id=UCB2ATFiszUNmw6z1x67GnYw |
23 |
https://www.youtube.com/feeds/videos.xml?channel_id=UCB2ATFiszUNmw6z1x67GnYw |
|
|
24 |
https://www.youtube.com/feeds/videos.xml?channel_id=UCg0V1MkdYkMlwZPU3IuKLMg |
|
diff --git a/.vim/vimrc b/.vim/vimrc
|
| 1 |
set nocompatible exrc secure |
1 |
set nocompatible exrc secure |
| 2 |
filetype plugin on |
2 |
filetype plugin on |
|
|
3 |
syntax on |
| 3 |
|
4 |
|
| 4 |
set encoding=utf8 spelllang=en_us laststatus=2 tabstop=4 shiftwidth=4 |
5 |
set encoding=utf8 spelllang=en_us laststatus=2 " tabstop=4 shiftwidth=4 |
| 5 |
set number autoindent cursorline ignorecase hlsearch incsearch signcolumn=yes |
6 |
set number autoindent cursorline ignorecase hlsearch incsearch signcolumn=yes |
| 6 |
set hidden nowrap nobackup noswapfile noundofile autoread updatetime=100 |
7 |
set hidden nowrap nobackup noswapfile noundofile autoread updatetime=100 |
| 7 |
set backspace=indent,eol,start completeopt=menuone path+=** |
8 |
set backspace=indent,eol,start completeopt=menuone path+=** |
| 8 |
set foldmethod=syntax foldlevel=99 foldopen= lazyredraw scrolloff=10 |
9 |
set foldmethod=syntax foldlevel=99 foldopen= lazyredraw scrolloff=10 |
| 9 |
set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*/vendor,tags,*.o,*.a,*.so |
10 |
set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*/vendor,tags,*.o,*.a,*.so |
| 10 |
set completeopt=menu,menuone,popup,noselect,noinsert |
11 |
set completeopt=menu,menuone,popup,noselect,noinsert complete+=t |
| 11 |
set background=dark |
12 |
set background=dark |
| 12 |
colorscheme wildcharm |
13 |
colorscheme wildcharm |
| 13 |
|
14 |
|
| ... |