mutt config
The environment variables are sourced from a private file with .bashrc.
~/.mbsyncrc
Create Slave
SyncState *
IMAPAccount gmail
| #ifndef CHACHA_HPP_INCLUDED | |
| #define CHACHA_HPP_INCLUDED 1 | |
| /* | |
| * A C++ version of ChaCha PRNG (*modified* from Orson Peters original code) | |
| * | |
| * Changes Copyright (c) 2017-18 Melissa E. O'Neill, licence as below. | |
| * | |
| * Changes compared to original 2015 version: | |
| * - Some formatting fixes |
| XTerm.termName: xterm-256color | |
| XTerm.vt100.locale: false | |
| XTerm.vt100.utf8: true | |
| XTerm.vt100.scrollTtyOutput: false | |
| XTerm.vt100.scrollKey: true | |
| XTerm.vt100.bellIsUrgent: true | |
| XTerm.vt100.metaSendsEscape: true | |
| XTerm.vt100.selectToClipboard: true | |
| XTerm.vt100.saveLines: 99999 | |
| XTerm.vt100.geometry: 132x43 |
mutt config
The environment variables are sourced from a private file with .bashrc.
~/.mbsyncrc
Create Slave
SyncState *
IMAPAccount gmail
| Section "Monitor" | |
| Identifier "HDMI-1" | |
| Modeline "3840x1600_30.00" 246.25 3840 4040 4440 5040 1600 1603 1613 1630 -hsync +vsync | |
| EndSection |
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Control Panel\Accessibility\Keyboard Response] | |
| "Flags"="59" | |
| "DelayBeforeAcceptance"="0" | |
| "AutoRepeatDelay"="250" | |
| "AutoRepeatRate"="10" | |
| "BounceTime"="0" | |
| $chocolateyAppList = "everything,googlechrome,sql-server-management-studio,greenshot,wavebox,vscode,7zip,1password,vlc,git,php,wireshark,composer,filezilla,visualstudio2019community,python2,powerbi,wsl,wsl-ubuntu-1804,winscp,winmerge,sql-server-2019,r,r.studio,rtools,dejavufonts,dotnetcore,postman" | |
| if ([string]::IsNullOrWhiteSpace($chocolateyAppList) -eq $false -or [string]::IsNullOrWhiteSpace($dismAppList) -eq $false) | |
| { | |
| try{ | |
| choco config get cacheLocation | |
| }catch{ | |
| Write-Output "Chocolatey not detected, trying to install now" | |
| iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
| } |
| Host * | |
| AddKeysToAgent yes | |
| IgnoreUnknown UseKeyChain | |
| UseKeychain yes | |
| IdentityFile ~/.ssh/id_rsa |
| # .bashrc | |
| # Source global definitions | |
| if [ -f /etc/bashrc ]; then | |
| . /etc/bashrc | |
| fi | |
| # User specific environment | |
| if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]] | |
| then |
| # ~/.profile: executed by the command interpreter for login shells. | |
| # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login | |
| # exists. | |
| # see /usr/share/doc/bash/examples/startup-files for examples. | |
| # the files are located in the bash-doc package. | |
| # the default umask is set in /etc/profile; for setting the umask | |
| # for ssh logins, install and configure the libpam-umask package. | |
| #umask 022 |
| unbind-key C-b | |
| set -g prefix ` | |
| bind-key e send-prefix | |
| bind-key ` last-window | |
| set-option -sa terminal-overrides ",xterm*:RGB" | |
| set -g default-terminal "tmux-256color" | |
| set-window-option -g mode-keys vi | |
| set -g bell-action none |