This file contains hidden or 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
## tested with tmux 3 | |
# mouse mode | |
set -g mouse on | |
setw -g mode-keys vi | |
# selection with mouse copies to clipboard in addition to the default action | |
unbind-key -n -T copy-mode-vi MouseDragEnd1Pane | |
bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "xclip -in -sel primary" |
This file contains hidden or 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
git clone https://github.com/llvm/llvm-project.git | |
# git checkout <some-version> | |
cd llvm-project | |
mkdir build | |
cd build | |
cmake \ | |
-G "Unix Makefiles" \ | |
-DLLVM_ENABLE_PROJECTS="clang;clang-tools-extra" \ | |
-DCMAKE_BUILD_TYPE="Release" \ |
This file contains hidden or 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
#!/usr/bin/env sh | |
# | |
# author: Quentin Sabah | |
# | |
deploy_dir=$PWD | |
jasmin_repo=http://github.com/Sable/jasmin.git | |
jasmin_branch=develop | |
jasmin_dir=$deploy_dir/jasmin-github |