···11+source 'echo "$( pw=$(pass c3f); echo set my_pass=\"$pw\" )" |'
22+set sort='reverse-last-date-received'
33+set my_user='j3s'
44+set spoolfile=imaps://$my_user:$my_pass@mail.c3f.net/
55+set folder="imaps://mail.c3f.net/"
66+set record='=Sent'
77+set postponed='=Drafts'
88+set imap_check_subscribed
99+set timeout=5
1010+set imap_keepalive=300
1111+set mail_check=5
1212+set realname='Jesse Olson'
1313+set from='j3s@c3f.net'
1414+set use_from=yes
1515+1616+set smtp_url=smtp://$my_user:$my_pass@mail.c3f.net:587
1717+set ssl_starttls=yes
1818+set ssl_force_tls=yes
1919+set edit_headers=yes
2020+set markers=no
2121+2222+set index_format="%2C %Z %D %-17.17n (%3l) %s"
2323+set pager_format="%S [%C/%m] %l %n: %s"
2424+set date_format="%Y-%m-%d %l:%M %p"
2525+macro index a '<save-message>=Archive<enter>y'
2626+macro index A '<pipe-message>git am<enter>j'
2727+push '<change-folder> =<enter>'
2828+2929+color index blue default ~P
3030+# Patch syntax highlighting
3131+color body brightwhite default ^[[:space:]].*
3232+color body yellow default ^(diff).*
3333+color body brightwhite default ^(\s).*
3434+color body cyan default ^(Signed-off-by).*
3535+color body cyan default ^(Docker-DCO-1.1-Signed-off-by).*
3636+color body brightwhite default ^(Cc)
3737+color body yellow default "^diff \-.*"
3838+color body brightwhite default "^index [a-f0-9].*"
3939+color body brightblue default "^---$"
4040+color body white default "^\-\-\- .*"
4141+color body white default "^[\+]{3} .*"
4242+color body green default "^[\+][^\+]+.*"
4343+color body red default "^\-[^\-]+.*"
4444+color body brightblue default "^@@ .*"
4545+color body green default "LGTM"
4646+color body brightmagenta default "-- Commit Summary --"
4747+color body brightmagenta default "-- File Changes --"
4848+color body brightmagenta default "-- Patch Links --"
4949+color body green default "^Merged #.*"
5050+color body red default "^Closed #.*"
5151+color body brightblue default "^Reply to this email.*"
+14-20
.config/sway/config
···2424# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
2525output * bg /home/j3s/pix/lainbakka.jpg fill
2626#
2727-# Example configuration:
2828-#
2929-# output DP-1 resolution 3840x2160 position 1920,0
3030-#
2727+2828+# clamshell mode
2929+set $laptop eDP-1
3030+bindswitch --reload lid:on output $laptop disable ; exec sudo ip link set down wlp2s0
3131+bindswitch --reload lid:off output $laptop enable ; exec sudo ip link set up wlp2s0
3232+3133# You can get the names of your outputs by running: swaymsg -t get_outputs
32343335### Idle configuration
3434-#
3535-# Example configuration:
3636-#
3736exec swayidle -w \
3837 timeout 700 'swaylock -f -c 000000' \
3938 timeout 900 'swaymsg "output * dpms off"' \
4039 resume 'swaymsg "output * dpms on"' \
4140 before-sleep 'swaylock -f -c 000000'
4242-#
4343-# This will lock your screen after 300 seconds of inactivity, then turn off
4444-# your displays after another 300 seconds, and turn your screens back on when
4141+# This will lock your screen after 700 seconds of inactivity, then turn off
4242+# your displays after another 900 seconds, and turn your screens back on when
4543# resumed. It will also lock your screen before your computer goes to sleep.
46444745### Input configuration
···67656866input "1739:30383:CUST0001:00_06CB:76AF_Touchpad" {
6967 tap enabled
6868+ tap_button_map lrm
6969+ dwt disabled
7070+ click_method clickfinger
7071}
7172#
7273# You can get the names of your inputs by running: swaymsg -t get_inputs
···192193# Resizing containers:
193194#
194195mode "resize" {
195195- # left will shrink the containers width
196196- # right will grow the containers width
197197- # up will shrink the containers height
198198- # down will grow the containers height
199196 bindsym $left resize shrink width 10px
200197 bindsym $down resize grow height 10px
201198 bindsym $up resize shrink height 10px
202199 bindsym $right resize grow width 10px
203200204204- # Ditto, with arrow keys
205201 bindsym Left resize shrink width 10px
206202 bindsym Down resize grow height 10px
207203 bindsym Up resize shrink height 10px
···220216bar {
221217 position top
222218223223- # When the status_command prints a new line to stdout, swaybar updates.
224224- # The default just shows the current date and time.
225225- status_command while date +'%Y-%m-%d %l:%M %p'; do sleep 1; done
219219+ status_command while ~/.config/sway/status; do sleep 1; done
226220227221 colors {
228222 statusline #ffffff
229229- background #323232
230230- inactive_workspace #32323200 #32323200 #5c5c5c
223223+ background #333333
224224+ inactive_workspace #333333 #333333 #ffffff
231225 }
232226}
233227
···7788Host git.cyberia.club
99 Port 3215
1010+1111+Host baikal
1212+ Hostname 97.127.122.154
1313+ User cyberian
1414+ Port 4999
+1-5
.vimrc
···2727" use rename-and-write-new method whenever safe
2828set backupcopy=auto
2929" patch required to honor double slash at end
3030-if has("patch-8.1.0251")
3131- " consolidate the writebackups -- not a big
3232- " deal either way, since they usually get deleted
3333- set backupdir^=~/.vim/backup//
3434-end
3030+set backupdir^=~/.vim/backup//
35313632" persist the undo tree for each file
3733set undofile