Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/charlax/dotfiles
My configuration files
https://github.com/charlax/dotfiles
dotfiles shell vim
Last synced: 3 months ago
JSON representation
My configuration files
- Host: GitHub
- URL: https://github.com/charlax/dotfiles
- Owner: charlax
- Created: 2012-01-05T07:06:19.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2024-04-10T13:58:20.000Z (7 months ago)
- Last Synced: 2024-04-10T19:49:05.739Z (7 months ago)
- Topics: dotfiles, shell, vim
- Language: Vim Script
- Homepage:
- Size: 1.13 MB
- Stars: 24
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
## Table of Contents
- [Prerequisites](#prerequisites)
- [Mac Os X](#mac-os-x)
- [Linux Debian/Ubuntu/Arch](#linux-debianubuntuarch)
- [Installation](#installation)
- [Post-install checklist on a fresh installation - Mac Os X](#post-install-checklist-on-a-fresh-installation---mac-os-x)
- [Initialization](#initialization)
- [Mac Os X Settings](#mac-os-x-settings)
- [Apps to install](#apps-to-install)
- [Misc](#misc)
- [Profiling ZSH](#profiling-zsh)
- [Useful software (not installed by default)](#useful-software-not-installed-by-default)
- [Checklist before reinstall](#checklist-before-reinstall)
- [Contributing](#contributing)
- [Inspiration](#inspiration)## Prerequisites
### Mac Os X
See fresh install below.
### Linux Debian/Ubuntu/Arch
```bash
curl https://raw.githubusercontent.com/charlax/dotfiles/master/install/provision.sh -o ./provision.sh
chmod a+x provision.sh./provision.sh
# full install:
./provision.sh --full
```Use this script to fully automate a new machine setup (e.g. with Vagrant):
```bash
install/provision.sh
```Otherwise, see Installation section below.
## Installation
```bash
DOTFILES="$HOME/.dotfiles"
git clone https://github.com/charlax/dotfiles.git $DOTFILES
# or
git clone [email protected]:charlax/dotfiles.git $DOTFILES# If you want only dotfiles
python3 $DOTFILES/install.py# On a fresh install
python3 $DOTFILES/install.py --with-all
```To install all the required software, run:
```bash
~/.dotfiles/install/install-apps-all.sh
```## Post-install checklist on a fresh installation - Mac Os X
### Initialization
1. Install any OS upgrade
2. Start with installing XCode from the App Store - it takes quite a long time. Open it and accept the T&C.
3. Install [Homebrew](https://brew.sh/) (see above)
4. Run the steps below in the terminal:```bash
# Make sure the account name is correct:
whoami
# If it needs to be changed, create a new temporary admin. Follow this guide:
# https://support.apple.com/en-us/HT201548# Install dependencies
brew install git python3# Create an SSH key and add it to Github
ssh-keygen -t ed25519 -C "[email protected]"
pbcopy < ~/.ssh/id_rsa.pub
# Then add it to Github# Verify you can connect to github:
ssh -T [email protected]# Install local git settings
cp $DOTFILES/git/gitconfig.local.template $DOTFILES/git/.gitconfig.local
```Once this is done, follow the instruction above (Installation).
### Mac Os X Settings
- Change the computer name
- Add French input source
- Set keyboard shortcuts
- Set the change input source shortcuts### Apps to install
Manually (see the script in `install/` for automatically installed apps):
- Annotate (App Store)
- Grammarly
- Keynote (App Store)
- Kindle (App Store)
- Numbers (App Store)
- Pages (App Store)
- Pixelmator (App Store)
- Things (App Store)
- Time Out (App Store)
- [VirtualBox](https://www.virtualbox.org/wiki/Downloads) (better to install manually as it requires Max Os X permissions)
- iA Writer (App Store)Setup the following apps:
- Password application
- Backup application
- Chrome
- Rectangle (give permissions)
- Things cloud
- Printers
- Open [UTC Time](https://apps.apple.com/us/app/utc-time/id1538245904?mt=12) at login
- Setup [MeetingBar](https://github.com/leits/MeetingBar) (`brew install meetingbar`)## Misc
- You can copy the dotfiles in the current directory through `copy-dotfiles-here.sh`
### Profiling ZSH
Use `zprof`:
```
# At the beginning of your file, e.g. zshrc
zmodload zsh/zprof...
# At the end:
zprof
```## Useful software (not installed by default)
See [Awesome tools](./doc/awesome-tools.md)
## Checklist before reinstall
- Run `ncdu`
- Backup local configuration (`find $DOTFILES -iname "*.local.*"`)
- Backup SSH keys (`ls ~/.ssh`)
- Backup GPG keys
- Check keys: `gpg --list-secret-keys --keyid-format LONG`
- Export: `gpg -o ~/Downloads/private.gpg --export-options backup --export-secret-keys [email protected]`
- Check each app for backup, go through list in `Applications/`
- Anki
- Backup hidden files in repo
- Check `git status --ignored` in dotfiles
- Check folders listed below
- Make sure branches in repo are pushed (use `clean-up-weekly`)
- Search the Internet for "what folders to backup"
- Search the Internet for "checklist before factory reset"
- Backup photos (too important)
- Make sure iCloud sync is finished (check status bar in Finder)
- What's most important? Is it backed up?
- Pictures
- Empty Bin
- Check VirtualMachines
- [Check Apple's advices](https://support.apple.com/en-us/HT201065)Before factory reset:
- [ ] Sign out of iCloud account
- [ ] Disconnect Bluetooth devices
- [ ] Sign out of iMessagesFolders to check:
```text
/Library
~
~/CodePerso
~/Library
```## Contributing
Checkout [CONTRIBUTING.md](./CONTRIBUTING.md)
## Inspiration
- [holman](https://github.com/holman/dotfiles)
- [dotfiles.github.io](https://dotfiles.github.io/inspiration/)