Add some Sublime Text config for dotfiles.

This commit is contained in:
Scott Wallace 2015-11-04 18:31:17 +00:00
parent 93c73667d4
commit 215d5c5380
3 changed files with 30 additions and 0 deletions

View file

@ -80,6 +80,15 @@ bind "\C-t":forward-search-history
for FILE in ~/.bash/auto_complete.d/*; do source ${FILE}; done for FILE in ~/.bash/auto_complete.d/*; do source ${FILE}; done
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------
#--------------------------------------------------------------------------------
# Create symlinks for Sublime Text (v3) config
#--------------------------------------------------------------------------------
SUBLIME3CONFDIR=~/"Library/Application Support/Sublime Text 3/Packages/User"
mkdir -p "${SUBLIME3CONFDIR}"
ln -fs ~/".sublime3/Preferences.sublime-settings" "${SUBLIME3CONFDIR}/Preferences.sublime-settings"
ln -fs ~/".sublime3/Package Control.sublime-settings" "${SUBLIME3CONFDIR}/Package Control.sublime-settings"
#--------------------------------------------------------------------------------
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------
# Run an SSH agent, if possible # Run an SSH agent, if possible
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------

View file

@ -0,0 +1,13 @@
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"GitSavvy",
"Markdown Preview",
"Package Control",
"Theme - SoDaReloaded"
]
}

View file

@ -0,0 +1,8 @@
{
"ignored_packages":
[
],
"theme": "SoDaReloaded Dark.sublime-theme",
"vintage_ctrl_keys": true,
"vintage_start_in_command_mode": true
}