25 lines
No EOL
470 B
Markdown
25 lines
No EOL
470 B
Markdown
# Dotfiles
|
|
|
|
## Submodules
|
|
|
|
- [Dotfiles/Template](https://git.euph.dev/Snoweuph/Dotfiles_template)
|
|
- [Dotfiles/nvim](https://git.euph.dev/Snoweuph/Dotfiles_nvim)
|
|
|
|
## Setup
|
|
|
|
### Install Dependencies
|
|
|
|
```sh
|
|
sudo dnf install -y curl wget git make just
|
|
```
|
|
|
|
### Install
|
|
|
|
```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
|
|
``` |