- π Table of Contents
- π Overview
- π¦ Prerequisites
- π Repository Structure
- π Getting Started
- π€ Contributing
- π License
This repository contains a collection of dotfiles and scripts for setting up a development environment quickly and efficiently. The included scripts automate the process of installing necessary applications and configuring your system to your preferences.
- Unix-like operating system (MacOS, Linux, etc.)
git
installed on your machinecurl
orwget
for downloading files (if not included in the install script)
βββ config/
βββ .config/
β βββ karabiner/
β β βββ automatic_backups/
β β βββ karabiner.json
β βββ nvim/
β β βββ after/
β β βββ colors/
β β βββ init.vim
β β βββ macos.vim
β β βββ maps.vim
β β βββ plug.vim
β β βββ windows.vim
β βββ sheldon/
β β βββ plugins.toml
β βββ starship.toml
βββ init/
β βββ vscode_extensions.json
β βββ vscode_settings.json
βββ scripts/
β βββ fresh.sh
β βββ git_config.sh
β βββ macos.sh
β βββ ssh.sh
β βββ vscode.sh
βββ setup/
βββ aliases
βββ colors
βββ editorconfig
βββ exports
βββ extra
βββ functions
βββ gitconfig
βββ gitignore
βββ zshrc
- Clone the config repository:
git clone https://github.com/johnie/config
- Change to the project directory:
cd config
- Run the Install Script
chmod +x install.sh
./install.sh
Contributions are welcome! Here are several ways you can contribute:
- Report Issues: Submit bugs found or log feature requests.
Click to expand
- Fork the Repository: Start by forking the project repository to your GitHub account.
- Clone Locally: Clone the forked repository to your local machine using a Git client.
git clone <your-forked-repo-url>
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear and concise message describing your updates.
git commit -m 'Implemented new feature x.'
- Push to GitHub: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
Once your PR is reviewed and approved, it will be merged into the main branch.
This project is protected under the MIT License.