Skip to content

yak6/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yak6's dotfiles

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)

Shell scripts

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"

Requirements

vim-plug

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