Skip to content

Latest commit

 

History

History
64 lines (54 loc) · 2.04 KB

CONFIGURATION.md

File metadata and controls

64 lines (54 loc) · 2.04 KB

Configuration

Database

Settings Type Default Description
path string process.env.ATOM_HOME If set to any local path, it will override the default path ex: ~/.atom.

Dock

Settings Type Default Description
position string Right In which dock to position project-viewer-plus.
isVisible boolean false If set to true, it will show the dock where project-viewer-plus is placed.
isActive boolean false If set to true, it will make project-viewer-plus the visible item in the placed dock.
saveChanges boolean false If set to true, it will save all changes related to the position and visibility of the project-viewer-plus's item in the placed dock.

Packages

Settings Type Default Description
treeView boolean false Tick to disable messing with tree-view package.
findAndReplace boolean false Tick to disable messing with find-and-replace package.
statusBar boolean false Tick to disable messing with status-bar package.
linter boolean false Tick to disable messing with linter and linter-ui-default packages.
github boolean false Tick to disable messing with github package.

Database File

// project-viewer-plus.json
{
  "groups": [
    {
      "name": "project-name",
      "icon": "default-icon",
      "sortBy": "position",
      "groups": [
        {
          "name": "project-name",
          "icon": "default-icon",
          "sortBy": "alphabetically",
          "groups": [],
          "projects": []
        }
      ],
      "projects": []
    }
  ],
  "projects": [
    {
      "name": "project-name",
      "icon": "default-icon",
      "paths": [
        "/path/to/project"
      ]
    }
  ]
}

Others

  • You can define for how long a notification stays in the screen: Settings -> packages -> notifications.