Skip to content

Instantly share code, notes, and snippets.

View brunobmello25's full-sized avatar

Bruno Mello brunobmello25

View GitHub Profile
@brunobmello25
brunobmello25 / .vimrc
Last active February 24, 2026 16:46
vimrc for server side
" ============================================================
" .vimrc minimalista para uso em servidores
" Sem plugins, só configurações nativas
" ============================================================
" --- Lider
let mapleader = " "
" --- Aparência
set number
@brunobmello25
brunobmello25 / nvim-pio.md
Created October 30, 2024 18:59 — forked from ironlungx/nvim-pio.md
PlatformIO with Neovim

Extensions

Following are the extensions required for neovim:

I use lazy.nvim so, just add the following to your plugins table, or create a new file in lua/plugins/lsp.lua

return {
	{
@brunobmello25
brunobmello25 / run.sh
Created June 24, 2024 20:51
bash script to auto recompile latex file when changes happen
# please install dependencies first:
# sudo apt update && sudo apt install textlive-full inotify-tools
#
# USAGE: ./run.sh ./tex-directory/texfile.tex
# -------------------------------------------------------------
#!/bin/bash
FILE=$1
DIR=$(dirname "$FILE")