This is my linux configuration
Here's what I have configured so far:
- vim configuration and plugins (submodules)
- tmux configuration and plugins
- lazygit configuration
- ranger configuration
- vifm configuration
- joshuto configuration
- Some useful bash files
Clone the repository with the following command
cd ~
git clone [email protected]:Lesords/dotfiles.git --depth 1 --recurse-submodules --shallow-submodules
Next, use the following command to move the configuration file to the user directory
cd dotfiles
./dot install
After the file move is complete, you can verify the configuration file using the following command
./dot status
./dot diff
Then, you can use the following command to bring the configuration file into effect
~/.config/lese/init.sh --config
Finally restart your terminal
Use the following command to automatically move all configuration files to the user directory
cd ~
git clone --bare [email protected]:Lesords/dotfiles.git --depth 1
git --git-dir=$HOME/dotfiles.git/ --work-tree=$HOME checkout
git --git-dir=$HOME/dotfiles.git/ --work-tree=$HOME submodule update --init --recursive --depth 1