Skip to content

Instantly share code, notes, and snippets.

View a-mhamdi's full-sized avatar
🎯
Focusing

Abdelbacet Mhamdi a-mhamdi

🎯
Focusing
  • ISETBZ
  • Tunisia
  • 21:48 (UTC +01:00)
View GitHub Profile
@a-mhamdi
a-mhamdi / tmux.conf
Last active May 17, 2024 12:54
TMUX CONF FILE
#-----------------------------#
# CONFIGURATION FILE FOR TMUX #
#-----------------------------#
set -g mouse on
set -g @tpm_plugins ' \
tmux-plugins/tpm \
tmux-plugins/tmux-sensible \
@a-mhamdi
a-mhamdi / gs.md
Last active January 14, 2024 15:59
Turtlesim in ROS2: Humble Hawksbill

Getting started w/ ROS2

We begin by checking which shell we are using on Linux:

which $SHELL

Sourcing our ROS installation.

source /opt/ros/humble/setup.bash
@a-mhamdi
a-mhamdi / latexmkrc
Last active May 17, 2024 11:59
LaTeX Make RC File
$recorder = 1;
$sleep_time = 1;
$pdf_mode = 1;
$pdf_previewer ='start zathura';
$pdflatex = "xelatex -shell-escape -synctex=1 -halt-on-error %O %S";
$bibtex_use = 2;
add_cus_dep('glo', 'gls', 0, 'run_makeglossaries');
add_cus_dep('acn', 'acr', 0, 'run_makeglossaries');
#--------------------#
# JULIA STARTUP FILE #
#--------------------#
# This file should contain site-specific commands to be executed on Julia startup;
# Users may store their own personal commands in `~/.julia/config/startup.jl`.
ENV["EDITOR"]="vim"
@a-mhamdi
a-mhamdi / vimrc
Last active June 11, 2024 19:43
VIM RC FILE
"----------------------------"
" CONFIGURATION FILE FOR VIM "
"----------------------------"
set nocompatible " be iMproved, required
filetype off " required
""" VUNDLE"""
" set the runtime path to include Vundle and initialize
@a-mhamdi
a-mhamdi / zshrc
Last active May 17, 2024 11:59
ZSH RC FILE
#----------------------------#
# CONFIGURATION FILE FOR ZSH #
#----------------------------#
export TERM="xterm-256color"
# Path to your oh-my-zsh installation.
export ZSH="$HOME/.oh-my-zsh"
source $ZSH/oh-my-zsh.sh
@a-mhamdi
a-mhamdi / bashrc
Last active May 17, 2024 11:57
BASH RC FILE
#-----------------------------#
# CONFIGURATION FILE FOR BASH #
#-----------------------------#
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac