https://github.com/ryym/dotfiles
My configuration files
https://github.com/ryym/dotfiles
dotfiles personal vim
Last synced: 7 months ago
JSON representation
My configuration files
- Host: GitHub
- URL: https://github.com/ryym/dotfiles
- Owner: ryym
- Created: 2015-06-05T13:45:12.000Z (almost 11 years ago)
- Default Branch: main
- Last Pushed: 2025-10-24T12:11:51.000Z (7 months ago)
- Last Synced: 2025-10-24T14:16:29.217Z (7 months ago)
- Topics: dotfiles, personal, vim
- Language: Vim Script
- Homepage:
- Size: 1.08 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dotfiles
This repository manages:
* my configuration files for some basic development tools I usually use ([dotfiles]).
* the installation scripts of them ([sync]).
[dotfiles]: dotfiles
[sync]: sync
## Supported OS
* macOS
* Arch Linux
## Prerequisites
* [Git] - to download and update this repository.
* [Bash] - to run install scripts written in Bash.
* Package manager - to install basic libraries for your OS. You can use:
* [Homebrew][Homebrew] (macOS)
* [pacman][pacman] (Arch Linux)
[Git]: https://git-scm.com/
[Bash]: https://www.gnu.org/software/bash/
[Homebrew]: http://brew.sh/
[pacman]: https://wiki.archlinux.org/title/pacman
## Installation
```sh
git clone https://github.com/ryym/dotfiles ~/.dotfiles
cd ~/.dotfiles && make
```
## Available tasks
You can use [make] to sync your local environment with this repository.
And you can re-run these tasks anytime to re-sync the environment.
[make]: https://www.gnu.org/software/make/
```sh
# Run default task (make install link).
make
# Install tools.
make install
```
| Task | Description |
| ---- | ----------- |
| dryrun | Show install commands without executing them. |
| install | Install development tools. |
| link | Create symbolic links of the configuration files in your directory. |
| unlink | Remove symbolic links created by the link task. |
## Inspiration
* [b4b4r07/dotfiles](https://github.com/b4b4r07/dotfiles)
* [creasty/dotfiles](https://github.com/creasty/dotfiles)
* [cowboy/dotfiles](https://github.com/cowboy/dotfiles)