Skip to content

Instantly share code, notes, and snippets.

View fuxialexander's full-sized avatar

Xi "Alexander" Fu fuxialexander

View GitHub Profile
`emacs --daemon` to run in the background.
`emacsclient.emacs24 <filename/dirname>` to open in terminal
NOTE: "M-m and SPC can be used interchangeably".
* Undo - `C-/`
* Redo - `C-?`
* Change case: 1. Camel Case : `M-c`
2. Upper Case : `M-u`
3. Lower Case : `M-l`
@fuxialexander
fuxialexander / tmux_local_install.sh
Last active October 4, 2015 08:22 — forked from ryin/tmux_local_install.sh
bash script for installing tmux without root access
#!/bin/bash
# Script for installing tmux on systems where you don't have root access.
# tmux will be installed in $HOME/.local/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e
TMUX_VERSION=2.0
@fuxialexander
fuxialexander / sVimcss
Last active December 17, 2015 10:18 — forked from jmgregory/sVimcss
sVim CSS configuration
@-webkit-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 0.7;
}
}
#sVim-command {