More fisherpriceOS things
Anirudh Oppiliappan x@icyphox.sh
Thu, 21 Jan 2021 12:45:37 +0530
6 files changed,
91 insertions(+),
2 deletions(-)
A
.gitignore
@@ -0,0 +1,7 @@
+darwin/fish/completions/kubectl.fish +darwin/fish/completions/fisher.fish +darwin/fish/functions/__z.fish +darwin/fish/functions/__z_add.fish +darwin/fish/functions/__z_clean.fish +darwin/fish/functions/__z_complete.fish +darwin/fish/functions/fisher.fish
M
darwin/com.googlecode.iterm2.plist
→
darwin/com.googlecode.iterm2.plist
@@ -2,6 +2,8 @@ <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> + <key>AllowClipboardAccess</key> + <true/> <key>AutoCommandHistory</key> <false/> <key>AutoHideTmuxClientSession</key>
M
darwin/fish/config.fish
→
darwin/fish/config.fish
@@ -2,7 +2,7 @@ set fish_greeting
set -gx PATH ~/bin ~/.local/bin ~/leet/Nim/bin ~/.nimble/bin \ /usr/local/bin /usr/bin /bin /sbin /usr/sbin /usr/X11R6/bin \ -~/go/bin +~/go/bin /usr/local/go/bin set -gx EDITOR nvim set -gx BROWSER iridium@@ -16,3 +16,7 @@ end
# workaround for slow completions on macOS function __fish_describe_command; end + +# The next line updates PATH for the Google Cloud SDK. +if [ -f '/Users/icy/Downloads/google-cloud-sdk/path.fish.inc' ]; . '/Users/icy/Downloads/google-cloud-sdk/path.fish.inc'; end +set -g fish_user_paths "/usr/local/opt/node@14/bin" $fish_user_paths
M
darwin/fish/functions/m.fish
→
darwin/fish/functions/m.fish
@@ -1,4 +1,4 @@
# Defined in - @ line 1 function m --wraps=nail --description 'alias m=nail' - nail $argv; + s-nail $argv; end
A
darwin/home/.mailrc
@@ -0,0 +1,71 @@
+set v15-compat +set netrc-lookup +set netrc-pipe='gpg -qd ~/.netrc.gpg' +set sendcharsets=utf-8,iso-8859-1 +set reply-in-same-charset +set fullnames +set followup-to followup-to-honour=ask-yes + +account "personal" { + localopts yes + set from="Anirudh Oppiliappan <x@icyphox.sh>" + set folder=~/mail/personal + set record=+Sent + set inbox=+Inbox + set mta=smtps://smtp.migadu.com + shortcut fwc "+Free Writers Club" \ + sent +Sent \ + inbox +Inbox \ + drafts +Drafts \ + trash +Trash \ + archive +Archive \ + spam +Junk +} + +set prompt='> ' +set colour-pager crt + +colour 256 sum-dotmark ft=bold,fg=13 dot +colour 256 sum-header fg=007 older +colour 256 sum-header bg=253,fg=white dot +colour 256 sum-header fg=white +colour 256 sum-thread bg=008 dot +colour 256 sum-thread fg=cyan + +account personal +set askattach +set markanswered +set autocollapse +set reply-to-honour +set editalong +set history-gabby=all +set history-file=~/.s-nailhist +set autosort=date + +set pipe-text/html='w3m -T text/html -dump' +set pipe-image/png='feh -' +set pipe-image/jpg='feh -' +set pipe-image/jpeg='feh -' +set pipe-application/pdf='zathura -' + +define trash { + move "$@" +Trash +} +commandalias del call trash + +retain date from to cc subject +set mime-counter-evidence=0xE + +define sync { + !mbsync -a + newmail +} +commandalias n call sync +commandalias mv mimeview + +define signature { + vput ! sig cat ~/.signature + vput csop message-inject-tail trim-end $sig +} + +set on-compose-leave=signature
M
ssh/config
→
ssh/config
@@ -8,6 +8,11 @@ Port 443
TCPKeepAlive yes IdentityFile ~/.ssh/github +Host deepsource + Hostname github.com + User git + IdentityFile ~/.ssh/deepsource-git + Host fern Hostname 152.67.160.174 User pi