「有限体
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <unistd.h> | |
| #include <pthread.h> | |
| #include <stdatomic.h> | |
| #include <IOKit/IOKitLib.h> | |
| #define NCALLERS 6 | |
| #define NCLOSERS 4 |
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
| # tmux起動時のシェルをzshにする | |
| set-option -g default-shell /bin/zsh | |
| # tmuxを256色表示できるようにする | |
| set-option -g default-terminal screen-256color | |
| set -g terminal-overrides 'xterm:colors=256' | |
| # ステータスバーをトップに配置する | |
| set-option -g status-position top |