Skip to content

mb6ockatf/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

dotfiles

for rofi there is @adi1090x's configuration setup

setup.sh

there's a setup.sh, which has 2 modes:

  • pack - to update project files with current system ones:
./setup.sh pack

note that setup.sh will only update files if replacing older file or if old file does not exist.

./setup.sh install

- install - to update system configuration files with ones inside project You can read more with ./setup.sh --help

tracking new files

you may want to add more dotfiles into setup.sh.

  1. add path of your new dotfile's folder into dot_folders array
  2. add your dotfile into dotfiles associative array. Key is a path, where inside project your dotfile will be stored, and value is a path where in system your dotfile will be stored

for instance,

dot_folders[6]="$HOME/.vim"
dot_files[vimrc]="$HOME/.vim/vimrc"

will track system file $HOME/.vim/vimrc as vimrc in project

./setup.sh install will copy vimrc to $HOME/.vim/vimrc; ./setup.sh pack will do the vise versa. checkout ./setup.sh help for more information

Other

checkout quick vim commands reference in wiki