Check for existing SSH keys by ls -al ~/.ssh
ssh-keygen -t ed25519 -C "[email protected]"
| #!/usr/bin/env python3 | |
| # NOTE: This is only useful until Meson 0.38.0 which includes an `uninstall` target. | |
| import argparse | |
| from contextlib import suppress | |
| from os import path, remove | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument('--dry-run', action='store_true') |
Check for existing SSH keys by ls -al ~/.ssh
ssh-keygen -t ed25519 -C "[email protected]"
| "workbench.editor.enablePreviewFromQuickOpen": false | |
| "breadcrumbs.enabled": true | |
| "explorer.openEditors.visible": 0 | |
| "editor.minimap.renderCharacters": false, | |
| "editor.minimap.maxColumn": 200, | |
| "editor.minimap.showSlider": "always" | |
| "editor.renderWhitespace": "all" | |
| "editor.smoothScrolling": true | |
| "editor.cursorBlinking": "phase" | |
| "editor.cursorSmoothCaretAnimation": true |