Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akagi201/dotfiles
My dotfiles for macOS and Arch Linux, managed with chezmoi
https://github.com/akagi201/dotfiles
chezmoi dotfiles linux macos oh-my-zsh starship tmux vim zsh
Last synced: about 1 month ago
JSON representation
My dotfiles for macOS and Arch Linux, managed with chezmoi
- Host: GitHub
- URL: https://github.com/akagi201/dotfiles
- Owner: Akagi201
- License: apache-2.0
- Created: 2016-10-31T07:33:19.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-02-17T08:20:23.000Z (12 months ago)
- Last Synced: 2024-12-27T05:34:48.717Z (about 2 months ago)
- Topics: chezmoi, dotfiles, linux, macos, oh-my-zsh, starship, tmux, vim, zsh
- Language: Shell
- Homepage:
- Size: 43 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotfiles
[![Chezmoi CI](https://github.com/Akagi201/dotfiles/actions/workflows/ci.yml/badge.svg)](https://github.com/Akagi201/dotfiles/actions/workflows/ci.yml)
## Tools
```sh
brew install chezmoi
sudo pacman -S chezmoi
```## Init
```sh
chezmoi init https://github.com/Akagi201/dotfiles.git
```## Add a new dotfile to chezmoi
```sh
chezmoi add ~/.zshrc
```## Edit chezmoi dot files
```sh
chezmoi cd
# edit dot_files with your favorite editor
```## Apply chezmoi dotfiles to HOME dir
```sh
chezmoi diff
chezmoi apply -v .zshrc
```## Push to github
```sh
chezmoi cd
git add .
git commit -m "xxx"
git push
```