Dotfiles/Readme.md

25 lines
470 B
Markdown
Raw Normal View History

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
```sh
2024-11-23 18:30:46 +00:00
sudo dnf install -y curl wget git make just
2024-07-02 22:27:26 +00:00
```
2024-11-23 18:53:30 +00:00
### 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
```