This repository contains my personal dotfiles for configuring various applications and tools on my system. These configurations help streamline my workflow and maintain consistency across different environments.
Work in progress... 🚧
Backup your Git configuration file with the following command:
cp ~/.gitconfig ~/Code/dotfiles/git/.gitconfigBackup your VS Code settings, keybindings, and extensions with these commands:
cp "$HOME/Library/Application Support/Code/User/settings.json" ~/Code/dotfiles/vscode/settings.json
cp "$HOME/Library/Application Support/Code/User/keybindings.json" ~/Code/dotfiles/vscode/keybindings.json
code --list-extensions > ~/Code/dotfiles/vscode/extensions.txtBackup your Zsh configuration file with the following command:
cp ~/.zprofile ~/Code/dotfiles/zsh/.zprofile
cp ~/.zshrc ~/Code/dotfiles/zsh/.zshrcBackup your SSH configuration file with the following command:
cp ~/.ssh/config ~/Code/dotfiles/ssh/configRestore your Git configuration file with the following command:
cp ~/Code/dotfiles/git/.gitconfig ~/.gitconfigRestore your VS Code settings, keybindings, and extensions with these commands:
cp ~/Code/dotfiles/vscode/settings.json "$HOME/Library/Application Support/Code/User/settings.json"
cp ~/Code/dotfiles/vscode/keybindings.json "$HOME/Library/Application Support/Code/User/keybindings.json"
xargs -n 1 code --install-extension < ~/Code/dotfiles/vscode/extensions.txtRestore your Zsh configuration file with the following command:
cp ~/Code/dotfiles/zsh/.zprofile ~/.zprofile
cp ~/Code/dotfiles/zsh/.zshrc ~/.zshrcRestore your SSH configuration file with the following command:
cp ~/Code/dotfiles/ssh/config ~/.ssh/configFollow me on these social media platforms:
| Platform | Handle |
|---|---|
| @tedemedet | |
| X | @tedemedet |
| BlueSky | @tedem.dev |
| Pinkary | @tedem |
End of README.md!