Skip to content

fuchs-fabian/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 

Repository files navigation

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'"