diff options
author | terminaldweller <thabogre@gmail.com> | 2022-01-28 17:41:27 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-01-28 17:41:27 +0000 |
commit | 9a20395870ab15e6e9483cd258fdccaa79b2157f (patch) | |
tree | 9f30e8e53f03467a20cd3bcb4c0a44a6ab8dafae | |
parent | updates (diff) | |
download | scripts-9a20395870ab15e6e9483cd258fdccaa79b2157f.tar.gz scripts-9a20395870ab15e6e9483cd258fdccaa79b2157f.zip |
updates
-rw-r--r-- | .offlineimaprc | 12 | ||||
-rw-r--r-- | .zshrc | 2 | ||||
-rwxr-xr-x | vim/vim-tiny-static.sh | 21 |
3 files changed, 31 insertions, 4 deletions
diff --git a/.offlineimaprc b/.offlineimaprc index 1fb188e..1dc81a4 100644 --- a/.offlineimaprc +++ b/.offlineimaprc @@ -1,10 +1,12 @@ [general] ui = ttyui accounts = gmail.com,terminaldweller.com +socktimeout = 90 [Account gmail.com] localrepository = gmail.com-local remoterepository = gmail.com-remote +synclabels = yes [Repository gmail.com-local] type = Maildir @@ -14,12 +16,12 @@ restoreatime = no [Repository gmail.com-remote] type = IMAP remoteuser = thabogre@gmail.com -remotepass = -remotehost = gmail.com +#remotepass = +remotehost = imap.gmail.com ssl = yes sslcacertfile = /etc/ssl/certs/ca-certificates.crt -[Accounts terminaldweller.com] +[Account terminaldweller.com] localrepository = terminaldweller.com-local remoterepository = terminaldweller.com-remote @@ -31,6 +33,8 @@ restoreatime = no [Repository terminaldweller.com-remote] type = IMAP remoteuser = devi@terminaldweller.com -remotepass = +#remotepass = remotehost = mail.terminaldweller.com remoteport = 993 +ssl = yes +sslcacertfile = /etc/ssl/certs/ca-certificates.crt @@ -187,6 +187,8 @@ alias getanimes="proxychains4 -q -f ~/proxies/ca/proxychains.conf kaminokumo --a alias gdb="gdb -q" alias bashrc="vim ~/scripts/.bashrc" alias fixbashrc="cp ~/scripts/.bashrc ~/" +alias offlineimaprc="vim ~/scripts/.offlineimaprc" +alias fixofflineimaprc="cp ~/scripts/.offlineimaprc ~/" #autosuggest ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#5f5fff,bg=#000000,bold" diff --git a/vim/vim-tiny-static.sh b/vim/vim-tiny-static.sh new file mode 100755 index 0000000..0c19ae2 --- /dev/null +++ b/vim/vim-tiny-static.sh @@ -0,0 +1,21 @@ +#!/usr/bin/env sh + +make distclean + +CFLAGS="" LD_FLAGS="-static" ./configure \ + --prefix=/debug/libs/runtime \ + --disable-channel \ + --disable-gpm \ + --disable-gtktest \ + --disable-gui \ + --disable-netbeans \ + --disable-nls \ + --disable-selinux \ + --disable-smack \ + --disable-sysmouse \ + --disable-xsmp \ + --enable-multibyte \ + --with-features=normal \ + --without-x + +make -j4 |