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
# This line allows you to recover your public ssh key from your private key. | |
# Assuming your private key is called `id_rsa` and you want your public key | |
# to be called `id_rsa.pub`. | |
ssh-keygen -y -f ~/.ssh/id_rsa > ~/.ssh/id_rsa.pub | |
# Your id_rsa file needs to have the correct permissions assigned to it. Run | |
# this line to set them. | |
sudo chmod 600 ~/.ssh.id_rsa |
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
{ | |
"editor.fontSize": 14, | |
"editor.lineHeight": 30, | |
"editor.minimap.enabled": true, | |
"editor.minimap.showSlider": "always", | |
"editor.wordWrap": "on", | |
"editor.detectIndentation": false, | |
"explorer.confirmDelete": false, | |
"terminal.integrated.fontSize": 14, | |
"window.zoomLevel": 0, |
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
#!/bin/bash | |
# Move default folders out of the way. | |
mv ~/Documents ~/Documents-old | |
mv ~/Music ~/Music-old | |
mv ~/Pictures ~/Pictures-old | |
mv ~/Movies ~/Movies-old | |
# Create symlinks into new folders. | |
ln -s "~/Google Drive/Documents" "~/Documents" |
NewerOlder