https://github.com/raksodiano/.dotfiles
My settings
https://github.com/raksodiano/.dotfiles
emacs git htop tmux xonsh
Last synced: 3 months ago
JSON representation
My settings
- Host: GitHub
- URL: https://github.com/raksodiano/.dotfiles
- Owner: raksodiano
- Created: 2020-06-13T19:45:23.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-03-04T14:56:33.000Z (3 months ago)
- Last Synced: 2025-03-04T15:39:20.246Z (3 months ago)
- Topics: emacs, git, htop, tmux, xonsh
- Language: Emacs Lisp
- Size: 132 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This repository contains all of my dotfiles configuration.
---
### Dotfiles Manager ###
I'm using [GNU Stow](https://www.gnu.org/software/stow/) a free, lightweight
dotfiles manager written in Perl to manages my dotfiles.What's make differentiates it from other dotfiles managers is that it does
not require various Python, Ruby or Perl dependencies like most dotfiles
manager.With that, it is easy to share files among multiple users or computers with a
few command lines.--------------------
### List of configurations: ###
```
htop ➔ interactive process viewer
```--------------------
### Getting Started ###
No matter what your Linux distribution, `stow` can easily be installed according
to your package manager:- OpenSUSE
```bash
sudo zypper in stow
```- Fedora
```bash
sudo dnf install stow
```- Debian
```bash
sudo apt-get install stow
```Once the installation is complete, make a clone of the repository:
```bash
git clone https://github.com/raksodiano/.dotfiles.git
```You can now install any configurations you wish to copy using GNU Stow:
```bash
# Make sure you are in the right directory
cd .dotfiles# Example to install the htop config
stow htop# Uninstall the htop config
stow -D htop
```