2024-07-02 22:27:26 +00:00
|
|
|
# Dotfiles
|
|
|
|
|
|
|
|
## Submodules
|
|
|
|
|
|
|
|
- [Dotfiles/Template](https://git.euph.dev/Snoweuph/Dotfiles_template)
|
|
|
|
- [Dotfiles/nvim](https://git.euph.dev/Snoweuph/Dotfiles_nvim)
|
|
|
|
|
|
|
|
## Setup
|
|
|
|
|
2024-11-23 18:30:46 +00:00
|
|
|
### Install Dependencies
|
2024-07-02 22:27:26 +00:00
|
|
|
|
2024-11-23 18:30:46 +00:00
|
|
|
> [NOTE]
|
|
|
|
> Parts of the Dotfiles automatic Dependency resolution relies on **dnf** the Fedora package Manager.
|
|
|
|
> This is why only **dnf** is listed here.
|
2024-07-02 22:27:26 +00:00
|
|
|
|
|
|
|
```sh
|
2024-11-23 18:30:46 +00:00
|
|
|
sudo dnf install -y curl wget tar unzip gzip git make just fzf
|
2024-07-02 22:27:26 +00:00
|
|
|
```
|
2024-11-23 18:30:46 +00:00
|
|
|
|
|
|
|
### Install
|
|
|
|
|
|
|
|
> [CAUTION]
|
|
|
|
> This is a **destructive installation** and will **overwrite** existing conflicting files.
|
|
|
|
|
|
|
|
```sh
|
|
|
|
cd ~ && \
|
|
|
|
git init -b neo && \
|
|
|
|
git remote add origin https://git.euph.dev/Snoweuph/Dotfiles.git && \
|
|
|
|
git fetch --all && \
|
|
|
|
git reset --hard origin/neo && \
|
|
|
|
git submodule update --init --recursive
|
|
|
|
```
|