This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# git-crypt-unlock - Work around a bug in git-crypt. | |
umask 077 | |
for FILE in `find .git-crypt/keys/**/* -type f`; do | |
if gpg -q --decrypt < $FILE > git-crypt-symmetric-key 2> /dev/null; then | |
git-crypt unlock git-crypt-symmetric-key | |
rm -f git-crypt-symmetric-key | |
echo 'unlocked' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Aug 09 11:08:25 CB-199 pulseaudio[3493]: [pulseaudio] module-bluez5-device.c: Profile a2dp_sink has no transport | |
Aug 09 11:11:05 CB-199 pulseaudio[3493]: [pulseaudio] module-bluez5-device.c: Refused to switch profile to a2dp_sink: Not connected | |
Aug 09 11:11:41 CB-199 pulseaudio[3493]: [pulseaudio] module-bluez5-device.c: Refused to switch profile to a2dp_sink: Not connected |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set surround | |
set clipboard+=unnamed | |
set hlsearch | |
set incsearch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shopt -s autocd | |
shopt -s cdspell | |
shopt -s dirspell | |
export EDITOR="vim" | |
export PROMPT_COMMAND="history -a; history -c; history -r;$PROMPT_COMMAND" | |
alias ..='cd ..' | |
alias ...='cd ../..' | |
alias ....='cd ../../..' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let blacklists = [ | |
"*://mail.google.com/*", | |
"*://workflowy.com/*", | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-webkit-keyframes fadein { | |
from { | |
opacity: 0; | |
} | |
to { | |
opacity: 1; | |
} | |
} | |
#sVim-command { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SSH_AGENT_PID DEFAULT= | |
SSH_AUTH_SOCK DEFAULT="${XDG_RUNTIME_DIR}/gnupg/S.gpg-agent.ssh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
apt-get update | |
apt-get install software-properties-common | |
apt-add-repository ppa:ansible/ansible | |
apt-get update | |
apt-get install ansible |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call plug#begin() | |
Plug 'w0rp/ale' | |
Plug 'tpope/vim-fugitive' | |
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } | |
Plug 'junegunn/fzf.vim' | |
Plug 'chriskempson/base16-vim' | |
Plug 'Valloric/YouCompleteMe', { 'do': './install.py', 'for': ['c', 'cpp'] } | |
Plug 'janko-m/vim-test' | |
Plug 'tpope/vim-dispatch' | |
Plug 'skywind3000/asyncrun.vim' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
background:url(https://unsplash.it/1920/1080/?random) center top !important; | |
background-size:cover !important; } | |
* { | |
color:white !important; | |
text-shadow: 1px 1px 10px #000; } |
NewerOlder