9 lines
257 B
Bash
9 lines
257 B
Bash
|
#! /bin/zsh
|
||
|
|
||
|
GIT_ROOT=$(git rev-parse --show-toplevel)
|
||
|
|
||
|
# cp instead of ln -s because the files may get changed by mc when using it
|
||
|
cp ${GIT_ROOT}/mc/ini ~/.config/mc/
|
||
|
cp ${GIT_ROOT}/mc/panels.ini ~/.config/mc/
|
||
|
cp ${GIT_ROOT}/mc/solarized.ini ~/.config/mc/
|