Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```