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 <cstdarg> | |
| #include <cstdio> | |
| #include <unistd.h> | |
| namespace escape_codes { | |
| constexpr const char *reset = "\033[0m"; | |
| constexpr const char *red = "\033[31m"; | |
| constexpr const char *green = "\033[32m"; | |
| constexpr const char *yellow = "\033[33m"; | |
| constexpr const char *blue = "\033[34m"; | 
  
    
      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 python3 | |
| import argparse | |
| import functools | |
| import itertools | |
| import os | |
| import sys | |
| from dataclasses import dataclass | |
| from typing import Callable, List | 
  
    
      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
    
  
  
    
  | # theme = "catppuccin_macchiato" # see `:theme <tab>` for all themes available | |
| theme = "tokyonight_storm" # see `:theme <tab>` for all themes available | |
| [editor] | |
| line-number = "relative" | |
| mouse = true | |
| true-color = true | |
| scrolloff = 10 | |
| scroll-lines = 5 | |
| cursorline = true | 
  
    
      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
    
  
  
    
  | --- | |
| AlignOperands: AlignAfterOperator | |
| AlignTrailingComments: true | |
| AllowAllArgumentsOnNextLine: true | |
| AllowShortLambdasOnASingleLine: Inline | |
| AllowShortIfStatementsOnASingleLine: AllIfsAndElse | |
| ColumnLimit: 100 | |
| IndentWidth: 4 | |
| IndentRequiresClause: true | |
| InsertBraces: true | 
  
    
      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
    
  
  
    
  | [*.py] | |
| indent_style = space | |
| indent_size = 4 | |
| [*.{c,h}] | |
| indent_style = tab | |
| indent_size = 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
    
  
  
    
  | select-pane() { tmux select-pane -t ${SESSION} -${1} ; } | |
| pane-down() { select-pane D ; } | |
| pane-up() { select-pane U ; } | |
| pane-left() { select-pane L ; } | |
| pane-right() { select-pane R ; } | |
| send-tmux-cmd() { tmux send-keys -t ${1} "${2}" C-m ; } | |
| TMUX_HELPERS_ON_PANE_CREATE="" | 
  
    
      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 bash | |
| SESSION=drone | |
| function send_tmux_cmd() { | |
| tmux send-keys -t ${SESSION} "${1}" C-m | |
| } | |
| function send_cmd() { | |
| send_tmux_cmd "source ~/amr_ws/devel/setup.bash" |