2023-11-06 20:11:34 +00:00
|
|
|
# Dotfiles
|
|
|
|
|
2024-02-25 14:20:42 +00:00
|
|
|
Repository with my dotfiles and some configurations
|
2023-11-06 20:11:34 +00:00
|
|
|
|
2024-02-25 14:20:42 +00:00
|
|
|
## Requirements
|
2023-11-06 20:11:34 +00:00
|
|
|
|
2024-02-25 14:20:42 +00:00
|
|
|
For everything to work properly, the following packages must be installed.
|
|
|
|
|
|
|
|
#### Arch Linux
|
|
|
|
|
|
|
|
```sh
|
|
|
|
sudo pacman -S git stow vim neovim zsh clang
|
|
|
|
```
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
Clone the repo using one of the methods.
|
|
|
|
|
|
|
|
#### Using HTTPS
|
|
|
|
|
|
|
|
```sh
|
|
|
|
git clone https://github.com/TiagoRG/.dotfiles.git
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Using SSH
|
|
|
|
|
|
|
|
```sh
|
|
|
|
git clone git@github.com:TiagoRG/.dotfiles.git
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Using GitHub CLI
|
|
|
|
|
|
|
|
```sh
|
|
|
|
gh repo clone TiagoRG/.dotfiles
|
|
|
|
```
|
|
|
|
|
|
|
|
Setup stow's symlinks.
|
|
|
|
|
|
|
|
```sh
|
|
|
|
cd .dotfiles
|
|
|
|
stow .
|
2023-11-06 20:11:34 +00:00
|
|
|
```
|