This sublime text 3 package allow for a finer (per project and per syntax) package configuration.
- Install package control
- Install Finer Package Settings:
- ⌘/ctrlshiftp Package Control: Install Package
- Type Finer Package Settings
- Open the Sublime Text package folder (Preferences -> Browse Packages...)
- Clone the package source repo in this folder
This package uses the packagesSettings parameter key to store a list of other packages configurations with the following syntax:
{
"packagesSettings": [
{
"settings_file": "",
"settings": {}
}
]
}Where:
- the
settings_filekey holds the base name (without extension) of the parameter file to override. For a package this is the name of the.sublime-settingsfile of the package, usually it is the name of the package. - the
settingskey hold a json object of the configuration to override. Pre-existing settings not specified will be conserved.
The settings are read using the underlying sublimText api, you can refer to the (Offical Sublime Text Documentation)[https://www.sublimetext.com/docs/3/settings.html] to know which files are consulted and in which order.
The configuration overriding is deactivated for .sublime-settings files so it remains possible to edit them.
finer package settings by celbig is licensed under CC BY 4.0