Skip to content

Commit

Permalink
Move configs to configs dir
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecRust committed Nov 8, 2023
1 parent 9957be8 commit 8b82f26
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 0 additions & 2 deletions vscode/settings.json β†’ configs/vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
"window.newWindowDimensions": "inherit",
"window.openFoldersInNewWindow": "on",
"window.title": "${activeEditorMedium}${separator}${rootName}",
// Workbench
"workbench.activityBar.visible": true,
"workbench.colorCustomizations": {},
"workbench.editor.decorations.badges": true,
"workbench.editor.decorations.colors": true,
Expand Down
4 changes: 2 additions & 2 deletions scripts/shell.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ done

# Symlink rtx and Starship configs
mkdir -p "$HOME/.config/rtx"
ln -sf "$REPO_PATH/rtx/config.toml" "$HOME/.config/rtx/config.toml"
ln -sf "$REPO_PATH/starship/starship.toml" "$HOME/.config/starship.toml"
ln -sf "$REPO_PATH/configs/rtx/config.toml" "$HOME/.config/rtx/config.toml"
ln -sf "$REPO_PATH/configs/starship/starship.toml" "$HOME/.config/starship.toml"

# Symlink Nextcloud dirs if present
# NOTE: Must delete existing dirs before symlinking to avoid recursive symlink
Expand Down
4 changes: 2 additions & 2 deletions scripts/sublime.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ git clone https://github.com/Yabatadesign/afterglow-theme/ "$HOME/Library/Applic

echo "==> πŸ”— Symlinking Sublime Text settings and keybindings"

ln -sf "$REPO_PATH/sublime/Preferences.sublime-settings" "$HOME/Library/Application Support/Sublime Text 3/Packages/User/Preferences.sublime-settings"
ln -sf "$REPO_PATH/sublime/Default (OSX).sublime-keymap" "$HOME/Library/Application Support/Sublime Text 3/Packages/User/Default (OSX).sublime-keymap"
ln -sf "$REPO_PATH/configs/sublime/Preferences.sublime-settings" "$HOME/Library/Application Support/Sublime Text 3/Packages/User/Preferences.sublime-settings"
ln -sf "$REPO_PATH/configs/sublime/Default (OSX).sublime-keymap" "$HOME/Library/Application Support/Sublime Text 3/Packages/User/Default (OSX).sublime-keymap"

echo "==> πŸ“œ Setting Sublime Text as default app for various extensions"

Expand Down
2 changes: 1 addition & 1 deletion scripts/vscode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ brew install --cask visual-studio-code

echo "==> πŸ”— Symlinking Visual Studio Code settings"

ln -sf "$REPO_PATH/vscode/settings.json" "$HOME/Library/Application Support/Code/User/settings.json"
ln -sf "$REPO_PATH/configs/vscode/settings.json" "$HOME/Library/Application Support/Code/User/settings.json"

echo "==> πŸ“œ Installing Visual Studio Code extensions"

Expand Down

0 comments on commit 8b82f26

Please sign in to comment.