This file contains 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
#!/usr/bin/env bash | |
declare -A output sample=( | |
[id]="969AEF26-6D33-475A-982B-27EC880A2495" | |
[name]="some_name" | |
[prop]="property with spaces" | |
[level]="lower" | |
[production]="no" | |
[env]="staging" | |
) |
This file contains 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
" VIM 8 defaults | |
unlet! skip_defaults_vim | |
silent! source $VIMRUNTIME/defaults.vim | |
set viminfo=%,<1000,'10,/50,:100,h,f0,n~/.vim/.viminfo | |
" │ │ │ │ │ │ │ ╰─ viminfo file path | |
" │ │ │ │ │ │ ╰──── file marks 0-9,A-Z 0=NOT stored | |
" │ │ │ │ │ ╰────── disable 'hlsearch' loading viminfo | |
" │ │ │ │ ╰─────────── command-line history saved | |
" │ │ │ ╰─────────────── search history saved |