Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/misterkartoffel/.dotfiles
- Owner: MisterKartoffel
- Created: 2025-01-15T00:46:21.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-01-22T14:17:46.000Z (23 days ago)
- Last Synced: 2025-01-22T14:27:01.079Z (23 days ago)
- Topics: archlinux, dotfiles
- Language: Lua
- Homepage:
- Size: 4.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 .
```