This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", | |
| "display": { | |
| "separator": " → " | |
| }, | |
| "modules": [ | |
| "title", | |
| "separator", | |
| { | |
| "type": "os", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" |