Skip to content

Instantly share code, notes, and snippets.

View facchettos's full-sized avatar

Jeremy Facchetti facchettos

  • Red Hat
  • France
View GitHub Profile
@facchettos
facchettos / main.go
Created April 22, 2019 12:25
stream pipeline example
package main
import (
"fmt"
"io"
"os"
"strings"
"unicode"
)
set nocompatible
set number
" Attempt to determine the type of a file based on its name and possibly its
" contents. Use this to allow intelligent auto-indenting for each filetype,
" and for plugins that are filetype specific.
filetype indent plugin on
" Enable syntax highlighting
syntax on
@facchettos
facchettos / .vimrc
Created October 24, 2019 06:35
vimrc
set nocompatible
set number
" Attempt to determine the type of a file based on its name and possibly its
" contents. Use this to allow intelligent auto-indenting for each filetype,
" and for plugins that are filetype specific.
filetype indent plugin on
" Enable syntax highlighting
syntax on