https://github.com/santisoler/dotfiles
https://github.com/santisoler/dotfiles
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/santisoler/dotfiles
- Owner: santisoler
- Created: 2017-06-23T14:23:04.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2024-05-29T22:11:06.000Z (about 2 years ago)
- Last Synced: 2024-06-11T17:30:00.656Z (about 2 years ago)
- Language: Shell
- Size: 14.7 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My configuration files
## What's in here?
This repo contains my personal configuration files so I can easily and quickly
set up any fresh-installed system with my favourite tools and appearance.
The configuration files are divided in folders, one per application or software.
This way is easy to copy only some configurations without the need to manually
scrape through the full collection of dotfiles.
For example:
- `bin`: contains a `bin` folder that hosts some of my personal scripts.
- `conda`: contains a `.condarc` file and an `environment.yml` for creating
a `default` conda environment.
- `git`: contains global `.gitconfig` and `.gitignore` files.
- `mpv`: configurations for the mpv video player.
- `nvim`: contains configuration files for Neovim (and for VIM).
- `terminator`: configuration for Terminator (terminal emulator with tiling
capabilities).
- `zathura`: configurations for the zathura document reader.
- `zsh`: configurations for the zsh shell.
## How to copy the files
Clone the repo:
```
git clone https://www.github.com/santisoler/dotfiles
```
or
```
git clone git@github.com:santisoler/dotfiles
```
Enter into the cloned directory:
```
cd dotfiles
```
Use `cp` to manually copy the dotfiles for certain
category.
For example, to copy only the Neovim dotfiles:
```
cp -r nvim/. ~
```