Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add "custom setups" section #24

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,16 @@ const config = {
'extensibility/syntaxdefs.md',
],
},
{
title: 'Example Setups',
path: '/guide/setup-examples/',
Comment on lines +123 to +124
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These names are still out of sync.

collapsable: false,
children: [
'setup-examples/',
'setup-examples/julia.md',
'setup-examples/remote_dev.md',
],
},
],
'/reference/': [
{
Expand Down
4 changes: 4 additions & 0 deletions docs/guide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ of this guide via the navigation bar on top.
You can always go back to this page
by clicking on "Guide" in that same bar.

If you want to know how to use Sublime for a particular worflow
or progamming language you can check [Example setups][].

**Happy learning!**

::: tip One last note before you dive in
Expand All @@ -50,6 +53,7 @@ Other than that, this site site can be used without JavaScript.

[Sublime Text]: https://www.sublimetext.com/
[Basic Concepts]: ./getting-started/basic-concepts.md
[Example setups]: ./setup-examples/README.md


## History
Expand Down
16 changes: 16 additions & 0 deletions docs/guide/setup-examples/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: Example setups
---

This contains "How to use Sublime with X" guides.
Those guides are opiniated and may not match your workflow,
but they can help you get started
when working on a new language/technology.

## Programming Languages

- [How to use Sublime with Julia](./julia.md)

## Workflow

- [How to use Sublime for remote development](./remote_dev.md)
Loading