mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-10 04:54:03 -08:00
101 lines
2.4 KiB
JavaScript
101 lines
2.4 KiB
JavaScript
module.exports = {
|
|
title: "Oh my Posh 3",
|
|
tagline: "A prompt theme engine for any shell.",
|
|
url: "https://ohmyposh.dev",
|
|
baseUrl: "/",
|
|
favicon: "img/favicon.ico",
|
|
organizationName: "jandedobbeleer",
|
|
projectName: "oh-my-posh3",
|
|
onBrokenLinks: "ignore",
|
|
themeConfig: {
|
|
sidebarCollapsible: false,
|
|
prism: {
|
|
theme: require("prism-react-renderer/themes/duotoneLight"),
|
|
darkTheme: require("prism-react-renderer/themes/oceanicNext"),
|
|
},
|
|
navbar: {
|
|
title: "Oh my Posh",
|
|
logo: {
|
|
alt: "Oh my Posh Logo",
|
|
src: "img/logo.svg",
|
|
},
|
|
items: [
|
|
{
|
|
to: "docs/",
|
|
activeBasePath: "docs",
|
|
label: "Docs",
|
|
position: "left",
|
|
},
|
|
{
|
|
href: "https://github.com/jandedobbeleer/oh-my-posh3",
|
|
label: "GitHub",
|
|
position: "right",
|
|
},
|
|
],
|
|
},
|
|
footer: {
|
|
style: "dark",
|
|
links: [
|
|
{
|
|
title: "How to",
|
|
items: [
|
|
{
|
|
label: "Getting started",
|
|
to: "docs/",
|
|
},
|
|
{
|
|
label: "Packages",
|
|
to: "docs/powershell",
|
|
},
|
|
{
|
|
label: "Contributing",
|
|
to: "docs/contributing_segment",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Social",
|
|
items: [
|
|
{
|
|
label: "GitHub",
|
|
href: "https://github.com/jandedobbeleer/oh-my-posh3",
|
|
},
|
|
{
|
|
label: "Twitter",
|
|
href: "https://twitter.com/jandedobbeleer",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Links",
|
|
items: [
|
|
{
|
|
label: "Support",
|
|
href: "/docs/#-support-",
|
|
},
|
|
{
|
|
label: "Docusaurus",
|
|
href: "https://github.com/facebook/docusaurus",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
copyright: `Copyright © ${new Date().getFullYear()} Jan De Dobbeleer.`,
|
|
},
|
|
},
|
|
presets: [
|
|
[
|
|
"@docusaurus/preset-classic",
|
|
{
|
|
docs: {
|
|
sidebarPath: require.resolve("./sidebars.js"),
|
|
editUrl: "https://github.com/jandedobbeleer/oh-my-posh3/edit/main/docs/",
|
|
},
|
|
theme: {
|
|
customCss: require.resolve("./src/css/custom.css"),
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|