In this repository you can find configuration files for programs i regularly use on Unix like operating systems.
- Configuration files for:
- zsh (shell)
- vim (text editor)
- i3wm (window manager)
- firefox (userChrome.css)
- alacritty (terminal emulator)
- lf (terminal file manager)
If you plan to use scripts from .local/bin
, make them executables files by running this command:
chmod +x ~/.local/bin/$(ls -1 --color=none)
Also don't forget to export this directory to $PATH
in your shell rc:
export PATH="$HOME/.local/bin:$PATH"
To make plugins work, you need to install vim-plug, a minimalist Vim plugin manager:
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim