Skip to content

Instantly share code, notes, and snippets.

View PolyMMA's full-sized avatar
💭
I may be slow to respond.

D. D. PolyMMA

💭
I may be slow to respond.
View GitHub Profile
@PolyMMA
PolyMMA / Pinout_EPS32.txt
Created May 1, 2024 22:36 — forked from iamamused/Pinout_EPS32.txt
ESP32 Development Board Pinout Ascii Art
Unoffical ESP32 Development Board Pinout Ascii Art
For more information:
https://www.espressif.com/en/products/hardware/esp32/overview
https://lastminuteengineers.com/esp32-arduino-ide-tutorial/#esp32-development-board-pinout
@PolyMMA
PolyMMA / .tmux.conf
Last active August 19, 2022 15:22
My tmux configuration
## My TMUX configuration file
## by: PolyMMA
##
## Plugin manager can be found here: https://github.com/tmux-plugins/tpm
## First time install:
## 1. git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
## 2. tmux source-file ~/.tmux.conf
## 3. Inside tmux: 'prefix + I' to install
##
## For any additional changes run the follwing inside tmux
@PolyMMA
PolyMMA / .vimrc
Last active January 11, 2024 07:31
My .vimrc configuration
" plugins
let need_to_install_plugins = 0
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
let need_to_install_plugins = 1
endif
call plug#begin()
Plug 'tpope/vim-sensible'