File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -86,13 +86,22 @@ for MOD in "${MODULES[@]}"; do
8686 # Prefer Neovim user config path
8787 echo " $TARGET /.config/nvim/init.vim" ;;
8888 settings.json)
89- # VSCode user settings
89+ # VSCode user settings or micro
9090 if [[ " $module_name " == " vscode" ]]; then
9191 echo " $TARGET /.config/Code/User/settings.json"
92+ elif [[ " $module_name " == " micro" ]]; then
93+ echo " $TARGET /.config/micro/settings.json"
9294 else
9395 # unknown mapping, default to HOME
9496 echo " $TARGET /$srcfile "
9597 fi ;;
98+ config.json)
99+ # micro: config.json -> ~/.config/micro/config.json
100+ if [[ " $module_name " == " micro" ]]; then
101+ echo " $TARGET /.config/micro/config.json"
102+ else
103+ echo " $TARGET /$srcfile "
104+ fi ;;
96105 * )
97106 echo " $TARGET /$srcfile " ;;
98107 esac
You can’t perform that action at this time.
0 commit comments