Skip to content

Instantly share code, notes, and snippets.

View drocha87's full-sized avatar

Diego Rocha drocha87

  • ICB
  • Brazil
View GitHub Profile
@drocha87
drocha87 / tmux.config
Created April 16, 2021 23:31
Tmux Configuration
set -g default-terminal "xterm-256color"
set -g base-index 1
# Automatically set window title
set-window-option -g automatic-rename on
set-option -g set-titles on
set -g status-keys vi
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
@drocha87
drocha87 / gofiber.go
Created March 19, 2021 12:49
Changing gofiber JSON encoder to set SetEscapedHtml(false).
package main
import (
"bytes"
"encoding/json"
"log"
"os"
"github.com/gofiber/fiber/v2"
"github.com/gofiber/fiber/v2/middleware/cors"