Skip to content

Instantly share code, notes, and snippets.

@Medialo
Medialo / shell-setup.ps1
Created March 22, 2026 02:10 — forked from mikepruett3/shell-setup.ps1
Packages to install via scoop, winget, choco, and other tools...
<#
.SYNOPSIS
Script to Initialize my custom powershell setup.
.DESCRIPTION
Script uses scoop
.NOTES
**NOTE** Will configure the Execution Policy for the "CurrentUser" to Unrestricted.
Author: Mike Pruett
Date: October 18th, 2018
@Medialo
Medialo / config.json
Created March 22, 2026 01:56
fastfetch default config
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"display": {
"separator": " → "
},
"modules": [
"title",
"separator",
{
"type": "os",
export PATH="/home/paul.brelet@sglk.local/.cargo/bin:$PATH"
#BIND_EXECUTE="--bind 'right:execute(echo "{}" > /dev/tty)+abort'"
function find_folder() {
local start_dir="${1:-.}" # prend le premier argument, ou '.' par défaut
find "$start_dir" -type d | fzf --preview='tree -C {} | head -50'
}
export FZF_START="fzf --style full"