Skip to content

Instantly share code, notes, and snippets.

View sun-rongyang's full-sized avatar
👨‍💻
coding

Rongyang Sun sun-rongyang

👨‍💻
coding
View GitHub Profile
@sun-rongyang
sun-rongyang / tmux.md
Created February 3, 2019 03:27 — forked from andreyvit/tmux.md
tmux cheatsheet

tmux cheat sheet

(C-x means ctrl+x, M-x means alt+x)

Prefix key

The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:

remap prefix to Control + a

@sun-rongyang
sun-rongyang / install-pfunit-on-mac-osx-base-on-intel-fortran-compiler.md
Created July 31, 2018 08:26
Install pFUnit on Mac OSX base on Intel Fortran Compiler

Install pFUnit on Mac OSX base on Intel Fortran Compiler

@sun-rongyang
sun-rongyang / ctags.setup
Created August 21, 2017 09:29 — forked from nazgob/ctags.setup
ctags setup on mac
# you have ctags but it does not work...
$ ctags -R --exclude=.git --exclude=log *
ctags: illegal option -- R
usage: ctags [-BFadtuwvx] [-f tagsfile] file ...
#you need to get new ctags, i recommend homebrew but anything will work
$ brew install ctags
#alias ctags if you used homebrew
$ alias ctags="`brew --prefix`/bin/ctags"