Skip to content

Latest commit

 

History

History
57 lines (41 loc) · 1.72 KB

README.md

File metadata and controls

57 lines (41 loc) · 1.72 KB

dotfiles - Useful dotfiles for Linux environments

.bashrc and .zshrc configuration with .rcconf

.rcconf is a file that contains aliases and functions for the Linux environment. It is used to configure the .bashrc and .zshrc files. The aliases and functions are used to simplify the usage of the terminal.

If you want to use this, aliases with the same names will be overwritten by this configuration!

To get a quick overview of which aliases and functions can be used, simply execute the following in the terminal after installation:

alf

Installation

.bashrc:

wget -O ~/.rcconf https://raw.githubusercontent.com/fuchs-fabian/dotfiles/refs/heads/main/src/.rcconf && \
echo -e '\nsource ~/.rcconf' >> ~/.bashrc && \
source ~/.bashrc && \
echo "'.rcconf' downloaded and updated in '.bashrc'"

.zshrc:

wget -O ~/.rcconf https://raw.githubusercontent.com/fuchs-fabian/dotfiles/refs/heads/main/src/.rcconf && \
echo -e '\nsource ~/.rcconf' >> ~/.zshrc && \
source ~/.zshrc && \
echo "'.rcconf' downloaded and updated in '.zshrc'"

Update

.bashrc:

wget -O ~/.rcconf https://raw.githubusercontent.com/fuchs-fabian/dotfiles/refs/heads/main/src/.rcconf && \
source ~/.bashrc && \
echo "'.rcconf' updated in '.bashrc'"

.zshrc:

wget -O ~/.rcconf https://raw.githubusercontent.com/fuchs-fabian/dotfiles/refs/heads/main/src/.rcconf && \
source ~/.zshrc && \
echo "'.rcconf' updated in '.zshrc'"