diff --git a/.config/Code/User/settings.json b/.config/Code/User/settings.json index ab2c053..043461d 100644 --- a/.config/Code/User/settings.json +++ b/.config/Code/User/settings.json @@ -4,7 +4,7 @@ "window.customMenuBarAltFocus": false, "window.titleBarStyle": "custom", "window.menuBarVisibility": "visible", - "workbench.colorTheme": "Default Light+", + "workbench.colorTheme": "papercolor-vscode-dark", "workbench.startupEditor": "none", "task.problemMatchers.neverPrompt": { "shell": true diff --git a/install_dotfiles.sh b/install_dotfiles.sh index 8d48930..5207ef4 100755 --- a/install_dotfiles.sh +++ b/install_dotfiles.sh @@ -105,6 +105,14 @@ function install() { fi fi + if [ -e "${dst}" ]; then + if command -v meld &> /dev/null + then + meld "${src}" "${dst}" + else + vim -d "${src}" "${dst}" + fi + fi backup_file "${dst}" echo "${dst} will now be linked."