Lakespace

Lakespace is a workspace utility manager designed to bring up the editor, browser and tabs, and associated information you need to get right into editing your code and getting things done.

Lakespace is available on npm as a package. Installation and use is pretty straight forward;

```
# npm install -g lakespace
```

Lakespace uses toml - Tom’s obvious markup language, for configuration. Once you have lakespace installed, create a folder and create a lakespace.toml file:

$ cd /path/to/project
$ cat <<EOF >>lakespace.toml
[example_window_name]
browser = "firefox"
tabs = [
  "https://ajduncan.org/",
  "https://lakesite.net/",
  "http://www.duncaningram.com/"

]

[ide]
editor = "atom"
project_directory = "."
EOF

Then you can type:

$ lakespace

Which will open a new firefox browser window with three tabs, and open the atom editor for the current directory.