Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/misterkartoffel/.dotfiles

Remote repository for my Arch Linux dotfiles.
https://github.com/misterkartoffel/.dotfiles

archlinux dotfiles

Last synced: 21 days ago
JSON representation

Remote repository for my Arch Linux dotfiles.

Awesome Lists containing this project

README

        

# Dotfiles
Remote repository for my personal dotfiles.

## Requirements
Install the following dependencies:
```text
# pacman -S git stow
```

## Installation
First, clone this remote repository in your `$HOME` directory using git:
```text
$ git clone [email protected]/MisterKartoffel/.dotfiles.git $HOME
$ cd .dotfiles
```

Then use GNU Stow to create the necessary symlinks:
```text
$ stow .
```

Finally, manually symlink `.zshenv` to `$HOME`:
```text
$ ln -sf ./.zshenv $HOME/.zshenv
```

## Caveats
If you run into a conflict error when Stow-ing the configuration, you need to remove the conflicting local files:
```text
# Either moving or copying conflicting files works, for example:
$ mv /path/to/conflicting/files{,.bak}

# Then, stow as normal:
$ stow .
```