Compare commits

...

8 Commits

Author SHA1 Message Date
Kid 426884c99e Fix broken translations 2023-04-25 16:12:06 +00:00
Kid 66dc920a59 Lint 2023-04-25 15:32:13 +00:00
Kid 57432eb187 Add back sitemap plugin 2023-04-25 15:03:38 +00:00
Kid 1673d5c501 Add back code copy plugin 2023-04-25 14:57:27 +00:00
Kid 5934ad85b9 Update file includes 2023-04-25 14:43:51 +00:00
Kid c296d08b03 Port styles 2023-04-25 14:30:56 +00:00
Kid f5c9046759 Update action button 2023-04-25 13:04:10 +00:00
Kid 504c8662f9 Initial setup 2023-04-25 12:57:04 +00:00
220 changed files with 4587 additions and 24991 deletions
+3 -1
View File
@@ -28,6 +28,8 @@ Cargo.lock
# Compiled files for documentation # Compiled files for documentation
docs/node_modules docs/node_modules
docs/.vuepress/dist/ docs/.vuepress/dist/
docs/.vuepress/.cache
docs/.vuepress/.temp
# Ignore pkg files within the install directory # Ignore pkg files within the install directory
install/**/*.pkg install/**/*.pkg
+58 -67
View File
@@ -1,8 +1,12 @@
import { defineConfig, SidebarConfigArray } from "vuepress/config"; import codeCopyPlugin from "@snippetors/vuepress-plugin-code-copy";
import { docsearchPlugin } from "@vuepress/plugin-docsearch";
import { googleAnalyticsPlugin } from "@vuepress/plugin-google-analytics";
import { defaultTheme } from "@vuepress/theme-default";
import { defineUserConfig, SidebarConfigArray } from "vuepress";
import { sitemapPlugin } from "vuepress-plugin-sitemap2";
const sidebar = (lang, override = {}): SidebarConfigArray => const sidebar = (lang, override = {}): SidebarConfigArray =>
[ [
"", // "Home", which should always have a override
"guide", // README, which should always have a override "guide", // README, which should always have a override
// Overrides for any page below is an inconsistency between the sidebar title and page title // Overrides for any page below is an inconsistency between the sidebar title and page title
"installing", "installing",
@@ -22,10 +26,10 @@ const sidebar = (lang, override = {}): SidebarConfigArray =>
} }
// If no override is set for current page, let VuePress fallback to page title // If no override is set for current page, let VuePress fallback to page title
return page in override ? [path, override[page]] : path; return page in override ? { link: path, text: override[page] } : path;
}); });
module.exports = defineConfig({ export default defineUserConfig({
locales: { locales: {
"/": { "/": {
lang: "en-US", lang: "en-US",
@@ -112,34 +116,22 @@ module.exports = defineConfig({
["meta", { name: "twitter:image", content: "https://starship.rs/icon.png" }], ["meta", { name: "twitter:image", content: "https://starship.rs/icon.png" }],
["meta", { name: "twitter:alt", content: "Starship: Cross-Shell Prompt" }], ["meta", { name: "twitter:alt", content: "Starship: Cross-Shell Prompt" }],
], ],
evergreen: true, theme: defaultTheme({
theme: "default-prefers-color-scheme",
themeConfig: {
logo: "/icon.png", logo: "/icon.png",
// the GitHub repo path // the GitHub repo path
repo: "starship/starship", repo: "starship/starship",
// the label linking to the repo
repoLabel: "GitHub",
// if your docs are not at the root of the repo: // if your docs are not at the root of the repo:
docsDir: "docs", docsDir: "docs",
// defaults to false, set to true to enable
editLinks: true,
// enables Algolia DocSearch
algolia: {
apiKey: "44118471f56286dcda7db941a043370d",
indexName: "starship",
appId: "M3XUO3SQOR",
},
locales: { locales: {
"/": { "/": {
// text for the language dropdown // text for the language dropdown
selectText: "Languages", selectLanguageText: "Languages",
// label for this locale in the language dropdown // label for this locale in the language dropdown
label: "English", selectLanguageName: "English",
// Custom text for edit link. Defaults to "Edit this page" // Custom text for edit link. Defaults to "Edit this page"
editLinkText: "Edit this page on GitHub", editLinkText: "Edit this page on GitHub",
// Custom navbar values // Custom navbar values
nav: [{ text: "Configuration", link: "/config/" }], navbar: [{ text: "Configuration", link: "/config/" }],
// Custom sidebar values // Custom sidebar values
sidebar: sidebar("", { sidebar: sidebar("", {
guide: "Guide", guide: "Guide",
@@ -147,13 +139,13 @@ module.exports = defineConfig({
}, },
"/de-DE/": { "/de-DE/": {
// text for the language dropdown // text for the language dropdown
selectText: "Sprachen", selectLanguageText: "Sprachen",
// label for this locale in the language dropdown // label for this locale in the language dropdown
label: "Deutsch", selectLanguageName: "Deutsch",
// Custom text for edit link. Defaults to "Edit this page" // Custom text for edit link. Defaults to "Edit this page"
editLinkText: "Bearbeite diese Seite auf GitHub", editLinkText: "Bearbeite diese Seite auf GitHub",
// Custom navbar values // Custom navbar values
nav: [{ text: "Konfiguration", link: "/de-DE/config/" }], navbar: [{ text: "Konfiguration", link: "/de-DE/config/" }],
// Custom sidebar values // Custom sidebar values
sidebar: sidebar("de-DE", { sidebar: sidebar("de-DE", {
guide: "Anleitung", guide: "Anleitung",
@@ -164,13 +156,13 @@ module.exports = defineConfig({
}, },
"/es-ES/": { "/es-ES/": {
// text for the language dropdown // text for the language dropdown
selectText: "Idiomas", selectLanguageText: "Idiomas",
// label for this locale in the language dropdown // label for this locale in the language dropdown
label: "Español", selectLanguageName: "Español",
// Custom text for edit link. Defaults to "Edit this page" // Custom text for edit link. Defaults to "Edit this page"
editLinkText: "Edita esta página en GitHub", editLinkText: "Edita esta página en GitHub",
// Custom navbar values // Custom navbar values
nav: [{ text: "Configuración", link: "/es-ES/config/" }], navbar: [{ text: "Configuración", link: "/es-ES/config/" }],
// Custom sidebar values // Custom sidebar values
sidebar: sidebar("es-ES", { sidebar: sidebar("es-ES", {
guide: "Guía", guide: "Guía",
@@ -181,13 +173,13 @@ module.exports = defineConfig({
}, },
"/fr-FR/": { "/fr-FR/": {
// text for the language dropdown // text for the language dropdown
selectText: "Langues", selectLanguageText: "Langues",
// label for this locale in the language dropdown // label for this locale in the language dropdown
label: "Français", selectLanguageName: "Français",
// Custom text for edit link. Defaults to "Edit this page" // Custom text for edit link. Defaults to "Edit this page"
editLinkText: "Éditez cette page sur GitHub", editLinkText: "Éditez cette page sur GitHub",
// Custom navbar values // Custom navbar values
nav: [{ text: "Configuration", link: "/fr-FR/config/" }], navbar: [{ text: "Configuration", link: "/fr-FR/config/" }],
// Custom sidebar values // Custom sidebar values
sidebar: sidebar("fr-FR", { sidebar: sidebar("fr-FR", {
guide: "Guide", guide: "Guide",
@@ -196,13 +188,13 @@ module.exports = defineConfig({
}, },
"/id-ID/": { "/id-ID/": {
// text for the language dropdown // text for the language dropdown
selectText: "Languages", selectLanguageText: "Languages",
// label for this locale in the language dropdown // label for this locale in the language dropdown
label: "Bahasa Indonesia", selectLanguageName: "Bahasa Indonesia",
// Custom text for edit link. Defaults to "Edit this page" // Custom text for edit link. Defaults to "Edit this page"
editLinkText: "Sunting halaman ini di Github", editLinkText: "Sunting halaman ini di Github",
// Custom navbar values // Custom navbar values
nav: [{ text: "Konfigurasi", link: "/id-ID/config/" }], navbar: [{ text: "Konfigurasi", link: "/id-ID/config/" }],
// Custom sidebar values // Custom sidebar values
sidebar: sidebar("id-ID", { sidebar: sidebar("id-ID", {
guide: "Petunjuk", guide: "Petunjuk",
@@ -213,13 +205,13 @@ module.exports = defineConfig({
}, },
"/it-IT/": { "/it-IT/": {
// text for the language dropdown // text for the language dropdown
selectText: "Languages", selectLanguageText: "Languages",
// label for this locale in the language dropdown // label for this locale in the language dropdown
label: "Italiano", selectLanguageName: "Italiano",
// Custom text for edit link. Defaults to "Edit this page" // Custom text for edit link. Defaults to "Edit this page"
editLinkText: "Modifica questa pagina in Github", editLinkText: "Modifica questa pagina in Github",
// Custom navbar values // Custom navbar values
nav: [{ text: "Configuration", link: "/it-IT/config/" }], navbar: [{ text: "Configuration", link: "/it-IT/config/" }],
// Custom sidebar values // Custom sidebar values
sidebar: sidebar("it-IT", { sidebar: sidebar("it-IT", {
guide: "Guide", guide: "Guide",
@@ -228,13 +220,13 @@ module.exports = defineConfig({
}, },
"/ja-JP/": { "/ja-JP/": {
// text for the language dropdown // text for the language dropdown
selectText: "言語", selectLanguageText: "言語",
// label for this locale in the language dropdown // label for this locale in the language dropdown
label: "日本語", selectLanguageName: "日本語",
// Custom text for edit link. Defaults to "Edit this page" // Custom text for edit link. Defaults to "Edit this page"
editLinkText: "GitHub で編集する", editLinkText: "GitHub で編集する",
// Custom navbar values // Custom navbar values
nav: [{ text: "設定", link: "/ja-JP/config/" }], navbar: [{ text: "設定", link: "/ja-JP/config/" }],
// Custom sidebar values // Custom sidebar values
sidebar: sidebar("ja-JP", { sidebar: sidebar("ja-JP", {
guide: "ガイド", guide: "ガイド",
@@ -243,13 +235,13 @@ module.exports = defineConfig({
}, },
"/pt-BR/": { "/pt-BR/": {
// text for the language dropdown // text for the language dropdown
selectText: "Languages", selectLanguageText: "Languages",
// label for this locale in the language dropdown // label for this locale in the language dropdown
label: "Português do Brasil", selectLanguageName: "Português do Brasil",
// Custom text for edit link. Defaults to "Edit this page" // Custom text for edit link. Defaults to "Edit this page"
editLinkText: "Edite esta página no Github", editLinkText: "Edite esta página no Github",
// Custom navbar values // Custom navbar values
nav: [{ text: "Configuração", link: "/pt-BR/config/" }], navbar: [{ text: "Configuração", link: "/pt-BR/config/" }],
// Custom sidebar values // Custom sidebar values
sidebar: sidebar("pt-BR", { sidebar: sidebar("pt-BR", {
guide: "Guia", guide: "Guia",
@@ -260,13 +252,13 @@ module.exports = defineConfig({
}, },
"/ru-RU/": { "/ru-RU/": {
// text for the language dropdown // text for the language dropdown
selectText: "Языки", selectLanguageText: "Языки",
// label for this locale in the language dropdown // label for this locale in the language dropdown
label: "Русский", selectLanguageName: "Русский",
// Custom text for edit link. Defaults to "Edit this page" // Custom text for edit link. Defaults to "Edit this page"
editLinkText: "Редактировать эту страницу на GitHub", editLinkText: "Редактировать эту страницу на GitHub",
// Custom navbar values // Custom navbar values
nav: [{ text: "Настройка", link: "/ru-RU/config/" }], navbar: [{ text: "Настройка", link: "/ru-RU/config/" }],
// Custom sidebar values // Custom sidebar values
sidebar: sidebar("ru-RU", { sidebar: sidebar("ru-RU", {
guide: "Руководство", guide: "Руководство",
@@ -278,13 +270,13 @@ module.exports = defineConfig({
}, },
"/vi-VN/": { "/vi-VN/": {
// text for the language dropdown // text for the language dropdown
selectText: "Ngôn ngữ", selectLanguageText: "Ngôn ngữ",
// label for this locale in the language dropdown // label for this locale in the language dropdown
label: "Tiếng Việt", selectLanguageName: "Tiếng Việt",
// Custom text for edit link. Defaults to "Edit this page" // Custom text for edit link. Defaults to "Edit this page"
editLinkText: "Chỉnh sửa trang này trên GitHub", editLinkText: "Chỉnh sửa trang này trên GitHub",
// Custom navbar values // Custom navbar values
nav: [{ text: "Cấu hình", link: "/vi-VN/config/" }], navbar: [{ text: "Cấu hình", link: "/vi-VN/config/" }],
// Custom sidebar values // Custom sidebar values
sidebar: sidebar("vi-VN", { sidebar: sidebar("vi-VN", {
guide: "Hướng dẫn", guide: "Hướng dẫn",
@@ -294,13 +286,13 @@ module.exports = defineConfig({
}, },
"/zh-TW/": { "/zh-TW/": {
// text for the language dropdown // text for the language dropdown
selectText: "語言", selectLanguageText: "語言",
// label for this locale in the language dropdown // label for this locale in the language dropdown
label: "繁體中文", selectLanguageName: "繁體中文",
// Custom text for edit link. Defaults to "Edit this page" // Custom text for edit link. Defaults to "Edit this page"
editLinkText: "在 GitHub 上修改此頁面", editLinkText: "在 GitHub 上修改此頁面",
// Custom navbar values // Custom navbar values
nav: [{ text: "設定", link: "/zh-TW/config/" }], navbar: [{ text: "設定", link: "/zh-TW/config/" }],
// Custom sidebar values // Custom sidebar values
sidebar: sidebar("zh-TW", { sidebar: sidebar("zh-TW", {
guide: "指引", guide: "指引",
@@ -309,13 +301,13 @@ module.exports = defineConfig({
}, },
"/zh-CN/": { "/zh-CN/": {
// text for the language dropdown // text for the language dropdown
selectText: "语言", selectLanguageText: "语言",
// label for this locale in the language dropdown // label for this locale in the language dropdown
label: "简体中文", selectLanguageName: "简体中文",
// Custom text for edit link. Defaults to "Edit this page" // Custom text for edit link. Defaults to "Edit this page"
editLinkText: "在 GitHub 上修改此页", editLinkText: "在 GitHub 上修改此页",
// Custom navbar values // Custom navbar values
nav: [{ text: "配置", link: "/zh-CN/config/" }], navbar: [{ text: "配置", link: "/zh-CN/config/" }],
// Custom sidebar values // Custom sidebar values
sidebar: sidebar("zh-CN", { sidebar: sidebar("zh-CN", {
guide: "指南", guide: "指南",
@@ -324,20 +316,19 @@ module.exports = defineConfig({
}), }),
}, },
}, },
}, }),
plugins: [ plugins: [
[ googleAnalyticsPlugin({
"@vuepress/google-analytics", id: "UA-71160903-4",
{ }),
ga: "UA-71160903-4", sitemapPlugin({
}, hostname: "https://starship.rs",
], }),
[ codeCopyPlugin(),
"vuepress-plugin-sitemap", docsearchPlugin({
{ apiKey: "44118471f56286dcda7db941a043370d",
hostname: "https://starship.rs", indexName: "starship",
}, appId: "M3XUO3SQOR",
], }),
["vuepress-plugin-code-copy", true],
], ],
}); });
+44
View File
@@ -0,0 +1,44 @@
.home .hero img {
max-width: 500px !important;
min-width: 300px;
width: 100%;
height: 100%;
}
.center {
margin: 0 auto;
width: 80%;
.demo-video {
width: 100%;
margin: 50px 0;
border-radius: 6px;
}
}
.hero {
margin: 150px 25px 70px;
}
.action-button {
background-color: #dd0b78 !important;
border: none !important;
color: #fff !important;
}
@font-face {
font-family: 'Nerd Font';
src: url("/nerd-font.woff2") format("woff2");
font-weight: 400;
font-style: normal;
}
:root {
--c-brand: #DD0B78;
--c-brand-light: #DD0B78CC;
--font-family-code: 'Nerd Font', source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}
html.dark {
--c-brand: #ff33b8;
--c-brand-light: #ff33b8cc;
}
-38
View File
@@ -1,38 +0,0 @@
.home .hero img
max-width: 500px !important
min-width: 300px
width: 100%
.center
margin 0 auto;
width: 80%
.demo-video
width: 100%
margin: 50px 0
border-radius: 6px
.hero
margin: 150px 25px 70px
.action-button
background-color: #dd0b78 !important
border-bottom: #c6096b !important
@font-face
font-family: 'Nerd Font';
src: url("/nerd-font.woff2") format("woff2");
font-weight: 400;
font-style: normal
code
font-family: 'Nerd Font', source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
overflow-wrap: break-word
@media (prefers-color-scheme: light)
:root
--languageTextColor: rgba(255,255,255,0.4)
.code-copy
position: absolute
right: 0
bottom: 1px
-6
View File
@@ -1,6 +0,0 @@
$accentColor = #DD0B78
$accentDarkColor = #ff33b8
$textColor = #2c3e50
$borderColor = #eaecef
$codeBgLightColor = #282c34
$preTextLightColor = #fff
+4 -2
View File
@@ -3,8 +3,10 @@ home: true
heroImage: /logo.svg heroImage: /logo.svg
heroText: null heroText: null
tagline: The minimal, blazing-fast, and infinitely customizable prompt for any shell! tagline: The minimal, blazing-fast, and infinitely customizable prompt for any shell!
actionText: Get Started → actions:
actionLink: ./guide/ - text: Get Started →
link: ./guide/
type: primary
features: features:
- title: Compatibility First - title: Compatibility First
details: Works on the most common shells on the most common operating systems. Use it everywhere! details: Works on the most common shells on the most common operating systems. Use it everywhere!
+7 -5
View File
@@ -3,16 +3,18 @@ home: true
heroImage: /logo.svg heroImage: /logo.svg
heroText: heroText:
tagline: التخصيص البسيط و السريع و الغير محدود لي ال"shell"! tagline: التخصيص البسيط و السريع و الغير محدود لي ال"shell"!
actionText: البدء مع Starship ← actions:
actionLink: ./guide/ - text: البدء مع Starship ←
link: ./guide/
type: primary
features: features:
- -
title: التوافق أولاً title: التوافق أولاً
details: يعمل على أكثر موجهات الأوامر شيوعاً في أكثر نظم التشغيل شيوعاً. استخدمه في كل مكان! details: يعمل على أكثر موجهات الأوامر شيوعاً في أكثر نظم التشغيل شيوعاً. استخدمه في كل مكان!
- -
title: Rust-Powered title: Rust-Powered
details: Brings the best-in-class speed and safety of Rust, to make your prompt as quick and reliable as possible. details: Brings the best-in-class speed and safety of Rust, to make your prompt as quick and reliable as possible.
- -
title: قابل للتخصيص title: قابل للتخصيص
details: Every little detail is customizable to your liking, to make this prompt as minimal or feature-rich as you'd like it to be. details: Every little detail is customizable to your liking, to make this prompt as minimal or feature-rich as you'd like it to be.
footer: ISC Licensed | Copyright © 2019-present Starship Contributors footer: ISC Licensed | Copyright © 2019-present Starship Contributors
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset bracketed-segments -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/bracketed-segments.toml) [Click to download TOML](/presets/toml/bracketed-segments.toml)
<<< @/.vuepress/public/presets/toml/bracketed-segments.toml @[code](../../.vuepress/public/presets/toml/bracketed-segments.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset nerd-font-symbols -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/nerd-font-symbols.toml) [Click to download TOML](/presets/toml/nerd-font-symbols.toml)
<<< @/.vuepress/public/presets/toml/nerd-font-symbols.toml @[code](../../.vuepress/public/presets/toml/nerd-font-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-empty-icons -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/no-empty-icons.toml) [Click to download TOML](/presets/toml/no-empty-icons.toml)
<<< @/.vuepress/public/presets/toml/no-empty-icons.toml @[code](../../.vuepress/public/presets/toml/no-empty-icons.toml)
+1 -1
View File
@@ -16,4 +16,4 @@ starship preset no-nerd-font -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/no-nerd-font.toml) [Click to download TOML](/presets/toml/no-nerd-font.toml)
<<< @/.vuepress/public/presets/toml/no-nerd-font.toml @[code](../../.vuepress/public/presets/toml/no-nerd-font.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-runtime-versions -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/no-runtime-versions.toml) [Click to download TOML](/presets/toml/no-runtime-versions.toml)
<<< @/.vuepress/public/presets/toml/no-runtime-versions.toml @[code](../../.vuepress/public/presets/toml/no-runtime-versions.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset pastel-powerline -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/pastel-powerline.toml) [Click to download TOML](/presets/toml/pastel-powerline.toml)
<<< @/.vuepress/public/presets/toml/pastel-powerline.toml @[code](../../.vuepress/public/presets/toml/pastel-powerline.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset plain-text-symbols -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/plain-text-symbols.toml) [Click to download TOML](/presets/toml/plain-text-symbols.toml)
<<< @/.vuepress/public/presets/toml/plain-text-symbols.toml @[code](../../.vuepress/public/presets/toml/plain-text-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset pure-preset -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/pure-preset.toml) [Click to download TOML](/presets/toml/pure-preset.toml)
<<< @/.vuepress/public/presets/toml/pure-preset.toml @[code](../../.vuepress/public/presets/toml/pure-preset.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset tokyo-night -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/tokyo-night.toml) [Click to download TOML](/presets/toml/tokyo-night.toml)
<<< @/.vuepress/public/presets/toml/tokyo-night.toml @[code](../../.vuepress/public/presets/toml/tokyo-night.toml)
+7 -5
View File
@@ -3,16 +3,18 @@ home: true
heroImage: /logo.svg heroImage: /logo.svg
heroText: heroText:
tagline: promptـێکی سوکەڵە، خێرا، و بێسنور دڵخوازکراو بۆ هەر شێڵێک! tagline: promptـێکی سوکەڵە، خێرا، و بێسنور دڵخوازکراو بۆ هەر شێڵێک!
actionText: دەستپێبکە ← actions:
actionLink: ./guide/ - text: دەستپێبکە ←
link: ./guide/
type: primary
features: features:
- -
title: سەرەتا گونجان title: سەرەتا گونجان
details: کاردەکات لەسەر زۆربەی شێڵە باوەکان لەسەر زۆربەی سیستەمە باوەکان. لە هەموو شوێنێک بەکاری بهێنە! details: کاردەکات لەسەر زۆربەی شێڵە باوەکان لەسەر زۆربەی سیستەمە باوەکان. لە هەموو شوێنێک بەکاری بهێنە!
- -
title: Rust لە پشتە title: Rust لە پشتە
details: باشترینی هاوتاکانی لە خێرایی و سەلامەتی Rust بەکارئەهێنێ بۆ ئەوەی promptـەکەت خێراترین و پشت پێبەستراوین بێ. details: باشترینی هاوتاکانی لە خێرایی و سەلامەتی Rust بەکارئەهێنێ بۆ ئەوەی promptـەکەت خێراترین و پشت پێبەستراوین بێ.
- -
title: دڵخوازکراو title: دڵخوازکراو
details: هەموو وردەکارییەکی دڵخواز ئەکرێ بەوجۆرەی حەزت لێیە، بۆ ئەوەی promptـەکە سوکەڵە بێ و پڕ تایبەتمەندی بێت بەوجۆرەی حەزت لێیە ببێ. details: هەموو وردەکارییەکی دڵخواز ئەکرێ بەوجۆرەی حەزت لێیە، بۆ ئەوەی promptـەکە سوکەڵە بێ و پڕ تایبەتمەندی بێت بەوجۆرەی حەزت لێیە ببێ.
footer: لەژێر مۆڵەتی ISCـە | مافی پارێزراوە © 2019-ئێستا بەژداریکەرانی Starship footer: لەژێر مۆڵەتی ISCـە | مافی پارێزراوە © 2019-ئێستا بەژداریکەرانی Starship
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset bracketed-segments -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/bracketed-segments.toml) [Click to download TOML](/presets/toml/bracketed-segments.toml)
<<< @/.vuepress/public/presets/toml/bracketed-segments.toml @[code](../../.vuepress/public/presets/toml/bracketed-segments.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset nerd-font-symbols -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/nerd-font-symbols.toml) [Click to download TOML](/presets/toml/nerd-font-symbols.toml)
<<< @/.vuepress/public/presets/toml/nerd-font-symbols.toml @[code](../../.vuepress/public/presets/toml/nerd-font-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-empty-icons -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/no-empty-icons.toml) [Click to download TOML](/presets/toml/no-empty-icons.toml)
<<< @/.vuepress/public/presets/toml/no-empty-icons.toml @[code](../../.vuepress/public/presets/toml/no-empty-icons.toml)
+1 -1
View File
@@ -16,4 +16,4 @@ starship preset no-nerd-font -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/no-nerd-font.toml) [Click to download TOML](/presets/toml/no-nerd-font.toml)
<<< @/.vuepress/public/presets/toml/no-nerd-font.toml @[code](../../.vuepress/public/presets/toml/no-nerd-font.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-runtime-versions -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/no-runtime-versions.toml) [Click to download TOML](/presets/toml/no-runtime-versions.toml)
<<< @/.vuepress/public/presets/toml/no-runtime-versions.toml @[code](../../.vuepress/public/presets/toml/no-runtime-versions.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset pastel-powerline -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/pastel-powerline.toml) [Click to download TOML](/presets/toml/pastel-powerline.toml)
<<< @/.vuepress/public/presets/toml/pastel-powerline.toml @[code](../../.vuepress/public/presets/toml/pastel-powerline.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset plain-text-symbols -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/plain-text-symbols.toml) [Click to download TOML](/presets/toml/plain-text-symbols.toml)
<<< @/.vuepress/public/presets/toml/plain-text-symbols.toml @[code](../../.vuepress/public/presets/toml/plain-text-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset pure-preset -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/pure-preset.toml) [Click to download TOML](/presets/toml/pure-preset.toml)
<<< @/.vuepress/public/presets/toml/pure-preset.toml @[code](../../.vuepress/public/presets/toml/pure-preset.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset tokyo-night -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/tokyo-night.toml) [Click to download TOML](/presets/toml/tokyo-night.toml)
<<< @/.vuepress/public/presets/toml/tokyo-night.toml @[code](../../.vuepress/public/presets/toml/tokyo-night.toml)
+7 -5
View File
@@ -3,16 +3,18 @@ home: true
heroImage: /logo.svg heroImage: /logo.svg
heroText: heroText:
tagline: Minimale, super schnelle und unendlich anpassbare Prompt für jede Shell! tagline: Minimale, super schnelle und unendlich anpassbare Prompt für jede Shell!
actionText: Loslegen → actions:
actionLink: ./de-DE/guide/ - text: Loslegen →
link: ./de-DE/guide/
type: primary
features: features:
- -
title: Kompatibel title: Kompatibel
details: Läuft mit den beliebtesten Shells auf den beliebtesten Betriebssystemen. Überall einsetzbar! details: Läuft mit den beliebtesten Shells auf den beliebtesten Betriebssystemen. Überall einsetzbar!
- -
title: Rust-Powered title: Rust-Powered
details: Bringt die Schnelligkeit und Sicherheit von Rust in deine Shell-Prompt. details: Bringt die Schnelligkeit und Sicherheit von Rust in deine Shell-Prompt.
- -
title: Individualisierbar title: Individualisierbar
details: Jedes noch so kleine Detail kann nach Deinen Wünschen angepasst werden, um die Eingabeaufforderung so minimal oder funktionsreich zu gestalten, wie Du es möchtest. details: Jedes noch so kleine Detail kann nach Deinen Wünschen angepasst werden, um die Eingabeaufforderung so minimal oder funktionsreich zu gestalten, wie Du es möchtest.
footer: ICS lizenziert | Copyright © 2019-heute Starship-Mitwirkende footer: ICS lizenziert | Copyright © 2019-heute Starship-Mitwirkende
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset bracketed-segments -o ~/.config/starship.toml
[Zum Herunterladen der TOML Datei klicken](/presets/toml/bracketed-segments.toml) [Zum Herunterladen der TOML Datei klicken](/presets/toml/bracketed-segments.toml)
<<< @/.vuepress/public/presets/toml/bracketed-segments.toml @[code](../../.vuepress/public/presets/toml/bracketed-segments.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset nerd-font-symbols -o ~/.config/starship.toml
[Zum Herunterladen der TOML Datei klicken](/presets/toml/nerd-font-symbols.toml) [Zum Herunterladen der TOML Datei klicken](/presets/toml/nerd-font-symbols.toml)
<<< @/.vuepress/public/presets/toml/nerd-font-symbols.toml @[code](../../.vuepress/public/presets/toml/nerd-font-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-empty-icons -o ~/.config/starship.toml
[Zum Herunterladen der TOML Datei klicken](/presets/toml/no-empty-icons.toml) [Zum Herunterladen der TOML Datei klicken](/presets/toml/no-empty-icons.toml)
<<< @/.vuepress/public/presets/toml/no-empty-icons.toml @[code](../../.vuepress/public/presets/toml/no-empty-icons.toml)
+1 -1
View File
@@ -16,4 +16,4 @@ starship preset no-nerd-font -o ~/.config/starship.toml
[Zum Herunterladen der TOML Datei klicken](/presets/toml/no-nerd-font.toml) [Zum Herunterladen der TOML Datei klicken](/presets/toml/no-nerd-font.toml)
<<< @/.vuepress/public/presets/toml/no-nerd-font.toml @[code](../../.vuepress/public/presets/toml/no-nerd-font.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-runtime-versions -o ~/.config/starship.toml
[Zum Herunterladen der TOML Datei klicken](/presets/toml/no-runtime-versions.toml) [Zum Herunterladen der TOML Datei klicken](/presets/toml/no-runtime-versions.toml)
<<< @/.vuepress/public/presets/toml/no-runtime-versions.toml @[code](../../.vuepress/public/presets/toml/no-runtime-versions.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset pastel-powerline -o ~/.config/starship.toml
[Zum Herunterladen der TOML Datei klicken](/presets/toml/pastel-powerline.toml) [Zum Herunterladen der TOML Datei klicken](/presets/toml/pastel-powerline.toml)
<<< @/.vuepress/public/presets/toml/pastel-powerline.toml @[code](../../.vuepress/public/presets/toml/pastel-powerline.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset plain-text-symbols -o ~/.config/starship.toml
[Zum Herunterladen der TOML Datei klicken](/presets/toml/plain-text-symbols.toml) [Zum Herunterladen der TOML Datei klicken](/presets/toml/plain-text-symbols.toml)
<<< @/.vuepress/public/presets/toml/plain-text-symbols.toml @[code](../../.vuepress/public/presets/toml/plain-text-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset pure-preset -o ~/.config/starship.toml
[Zum Herunterladen der TOML Datei klicken](/presets/toml/pure-preset.toml) [Zum Herunterladen der TOML Datei klicken](/presets/toml/pure-preset.toml)
<<< @/.vuepress/public/presets/toml/pure-preset.toml @[code](../../.vuepress/public/presets/toml/pure-preset.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset tokyo-night -o ~/.config/starship.toml
[Zum Herunterladen der TOML Datei klicken](/presets/toml/tokyo-night.toml) [Zum Herunterladen der TOML Datei klicken](/presets/toml/tokyo-night.toml)
<<< @/.vuepress/public/presets/toml/tokyo-night.toml @[code](../../.vuepress/public/presets/toml/tokyo-night.toml)
+7 -5
View File
@@ -3,16 +3,18 @@ home: true
heroImage: /logo.svg heroImage: /logo.svg
heroText: heroText:
tagline: '¡El prompt minimalista, ultrarápido e infinitamente personalizable para cualquier intérprete de comandos!' tagline: '¡El prompt minimalista, ultrarápido e infinitamente personalizable para cualquier intérprete de comandos!'
actionText: Comenzar → actions:
actionLink: ./guide/ - text: Comenzar →
link: ./guide/
type: primary
features: features:
- -
title: Compatibilidad primero title: Compatibilidad primero
details: Funciona en los intérprete de comandos más comunes de los sistemas operativos más comunes. ¡Úsalo en todas partes! details: Funciona en los intérprete de comandos más comunes de los sistemas operativos más comunes. ¡Úsalo en todas partes!
- -
title: Desarrollado en Rust title: Desarrollado en Rust
details: Obtén la mayor velocidad y seguridad de Rust, para hacer tu prompt lo más rápida y segura posible. details: Obtén la mayor velocidad y seguridad de Rust, para hacer tu prompt lo más rápida y segura posible.
- -
title: Personalizable title: Personalizable
details: Puedes personalizar cada pequeño detalle a tu gusto, de manera que puedes tener un prompt minimalista o rico en funcionalidades. details: Puedes personalizar cada pequeño detalle a tu gusto, de manera que puedes tener un prompt minimalista o rico en funcionalidades.
footer: Bajo una licencia ISC | Derechos de autor © 2019-presente Colaboradores de Starship footer: Bajo una licencia ISC | Derechos de autor © 2019-presente Colaboradores de Starship
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset bracketed-segments -o ~/.config/starship.toml
[Clic para descargar TOML](/presets/toml/bracketed-segments.toml) [Clic para descargar TOML](/presets/toml/bracketed-segments.toml)
<<< @/.vuepress/public/presets/toml/bracketed-segments.toml @[code](../../.vuepress/public/presets/toml/bracketed-segments.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset nerd-font-symbols -o ~/.config/starship.toml
[Clic para descargar TOML](/presets/toml/nerd-font-symbols.toml) [Clic para descargar TOML](/presets/toml/nerd-font-symbols.toml)
<<< @/.vuepress/public/presets/toml/nerd-font-symbols.toml @[code](../../.vuepress/public/presets/toml/nerd-font-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-empty-icons -o ~/.config/starship.toml
[Clic para descargar TOML](/presets/toml/no-empty-icons.toml) [Clic para descargar TOML](/presets/toml/no-empty-icons.toml)
<<< @/.vuepress/public/presets/toml/no-empty-icons.toml @[code](../../.vuepress/public/presets/toml/no-empty-icons.toml)
+1 -1
View File
@@ -16,4 +16,4 @@ starship preset no-nerd-font -o ~/.config/starship.toml
[Clic para descargar TOML](/presets/toml/no-nerd-font.toml) [Clic para descargar TOML](/presets/toml/no-nerd-font.toml)
<<< @/.vuepress/public/presets/toml/no-nerd-font.toml @[code](../../.vuepress/public/presets/toml/no-nerd-font.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-runtime-versions -o ~/.config/starship.toml
[Clic para descargar TOML](/presets/toml/no-runtime-versions.toml) [Clic para descargar TOML](/presets/toml/no-runtime-versions.toml)
<<< @/.vuepress/public/presets/toml/no-runtime-versions.toml @[code](../../.vuepress/public/presets/toml/no-runtime-versions.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset pastel-powerline -o ~/.config/starship.toml
[Clic para descargar TOML](/presets/toml/pastel-powerline.toml) [Clic para descargar TOML](/presets/toml/pastel-powerline.toml)
<<< @/.vuepress/public/presets/toml/pastel-powerline.toml @[code](../../.vuepress/public/presets/toml/pastel-powerline.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset plain-text-symbols -o ~/.config/starship.toml
[Clic para descargar TOML](/presets/toml/plain-text-symbols.toml) [Clic para descargar TOML](/presets/toml/plain-text-symbols.toml)
<<< @/.vuepress/public/presets/toml/plain-text-symbols.toml @[code](../../.vuepress/public/presets/toml/plain-text-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset pure-preset -o ~/.config/starship.toml
[Clic para descargar TOML](/presets/toml/pure-preset.toml) [Clic para descargar TOML](/presets/toml/pure-preset.toml)
<<< @/.vuepress/public/presets/toml/pure-preset.toml @[code](../../.vuepress/public/presets/toml/pure-preset.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset tokyo-night -o ~/.config/starship.toml
[Clic para descargar TOML](/presets/toml/tokyo-night.toml) [Clic para descargar TOML](/presets/toml/tokyo-night.toml)
<<< @/.vuepress/public/presets/toml/tokyo-night.toml @[code](../../.vuepress/public/presets/toml/tokyo-night.toml)
+7 -5
View File
@@ -3,16 +3,18 @@ home: true
heroImage: /logo.svg heroImage: /logo.svg
heroText: heroText:
tagline: L'invite minimaliste, ultra-rapide et personnalisable à l'infini pour n'importe quel shell ! tagline: L'invite minimaliste, ultra-rapide et personnalisable à l'infini pour n'importe quel shell !
actionText: Commencez → actions:
actionLink: ./guide/ - text: Commencez →
link: ./guide/
type: primary
features: features:
- -
title: Compatibilité avant tout title: Compatibilité avant tout
details: Fonctionne sur tous les principaux shells et système d'exploitation. Utilisez-le partout ! details: Fonctionne sur tous les principaux shells et système d'exploitation. Utilisez-le partout !
- -
title: Propulsé par Rust title: Propulsé par Rust
details: Profitez de toute la rapidité et la sécurité de Rust pour rendre votre invite de commandes la plus rapide et fiable possible. details: Profitez de toute la rapidité et la sécurité de Rust pour rendre votre invite de commandes la plus rapide et fiable possible.
- -
title: Personnalisable title: Personnalisable
details: Tous les petits détails sont personnalisable à votre goût, pour rendre votre invite de commandes aussi légère ou complète que le vous souhaitez. details: Tous les petits détails sont personnalisable à votre goût, pour rendre votre invite de commandes aussi légère ou complète que le vous souhaitez.
footer: Licence ISC | Copyright © 2019-présent Contributeurs Starship footer: Licence ISC | Copyright © 2019-présent Contributeurs Starship
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset bracketed-segments -o ~/.config/starship.toml
[Cliquez pour télécharger le TOML](/presets/toml/bracketed-segments.toml) [Cliquez pour télécharger le TOML](/presets/toml/bracketed-segments.toml)
<<< @/.vuepress/public/presets/toml/bracketed-segments.toml @[code](../../.vuepress/public/presets/toml/bracketed-segments.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset nerd-font-symbols -o ~/.config/starship.toml
[Cliquez pour télécharger le TOML](/presets/toml/nerd-font-symbols.toml) [Cliquez pour télécharger le TOML](/presets/toml/nerd-font-symbols.toml)
<<< @/.vuepress/public/presets/toml/nerd-font-symbols.toml @[code](../../.vuepress/public/presets/toml/nerd-font-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-empty-icons -o ~/.config/starship.toml
[Cliquez pour télécharger le TOML](/presets/toml/no-empty-icons.toml) [Cliquez pour télécharger le TOML](/presets/toml/no-empty-icons.toml)
<<< @/.vuepress/public/presets/toml/no-empty-icons.toml @[code](../../.vuepress/public/presets/toml/no-empty-icons.toml)
+1 -1
View File
@@ -16,4 +16,4 @@ starship preset no-nerd-font -o ~/.config/starship.toml
[Cliquez pour télécharger le TOML](/presets/toml/no-nerd-font.toml) [Cliquez pour télécharger le TOML](/presets/toml/no-nerd-font.toml)
<<< @/.vuepress/public/presets/toml/no-nerd-font.toml @[code](../../.vuepress/public/presets/toml/no-nerd-font.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-runtime-versions -o ~/.config/starship.toml
[Cliquez pour télécharger le TOML](/presets/toml/no-runtime-versions.toml) [Cliquez pour télécharger le TOML](/presets/toml/no-runtime-versions.toml)
<<< @/.vuepress/public/presets/toml/no-runtime-versions.toml @[code](../../.vuepress/public/presets/toml/no-runtime-versions.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset pastel-powerline -o ~/.config/starship.toml
[Cliquez pour télécharger le TOML](/presets/toml/pastel-powerline.toml) [Cliquez pour télécharger le TOML](/presets/toml/pastel-powerline.toml)
<<< @/.vuepress/public/presets/toml/pastel-powerline.toml @[code](../../.vuepress/public/presets/toml/pastel-powerline.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset plain-text-symbols -o ~/.config/starship.toml
[Cliquez pour télécharger le TOML](/presets/toml/plain-text-symbols.toml) [Cliquez pour télécharger le TOML](/presets/toml/plain-text-symbols.toml)
<<< @/.vuepress/public/presets/toml/plain-text-symbols.toml @[code](../../.vuepress/public/presets/toml/plain-text-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset pure-preset -o ~/.config/starship.toml
[Cliquez pour télécharger le TOML](/presets/toml/pure-preset.toml) [Cliquez pour télécharger le TOML](/presets/toml/pure-preset.toml)
<<< @/.vuepress/public/presets/toml/pure-preset.toml @[code](../../.vuepress/public/presets/toml/pure-preset.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset tokyo-night -o ~/.config/starship.toml
[Cliquez pour télécharger le TOML](/presets/toml/tokyo-night.toml) [Cliquez pour télécharger le TOML](/presets/toml/tokyo-night.toml)
<<< @/.vuepress/public/presets/toml/tokyo-night.toml @[code](../../.vuepress/public/presets/toml/tokyo-night.toml)
+7 -5
View File
@@ -3,16 +3,18 @@ home: true
heroImage: /logo.svg heroImage: /logo.svg
heroText: heroText:
tagline: Prompt yang minimal, super cepat, dan dapat disesuaikan tanpa batas untuk shell apa pun! tagline: Prompt yang minimal, super cepat, dan dapat disesuaikan tanpa batas untuk shell apa pun!
actionText: Mari Mulai → actions:
actionLink: ./guide/ text: Mari Mulai →
link: ./guide/
type: primary
features: features:
- -
title: Kompatibilitas Yang Utama title: Kompatibilitas Yang Utama
details: Dapat berfungsi di shells standar dengan sistem operasi yang paling biasa. Pakai di mana saja! details: Dapat berfungsi di shells standar dengan sistem operasi yang paling biasa. Pakai di mana saja!
- -
title: Dibangun Dengan Rust title: Dibangun Dengan Rust
details: Menggunakan kecepatan dan keamanan dari Rust, untuk membuat prompt kamu bekerja secepat dan seandal mungkin. details: Menggunakan kecepatan dan keamanan dari Rust, untuk membuat prompt kamu bekerja secepat dan seandal mungkin.
- -
title: Dapat Dikustomisasi title: Dapat Dikustomisasi
details: Kamu dapat mengatur semua detail kecil dengan sesukamu, entah itu untuk membuatnya sebagai prompt yang seminimal mungkin atau kaya akan fitur yang kamu mau. details: Kamu dapat mengatur semua detail kecil dengan sesukamu, entah itu untuk membuatnya sebagai prompt yang seminimal mungkin atau kaya akan fitur yang kamu mau.
footer: Berlisensi ISC | Hak Cipta © 2019-sekarang Kontributor Starship footer: Berlisensi ISC | Hak Cipta © 2019-sekarang Kontributor Starship
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset bracketed-segments -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/bracketed-segments.toml) [Click to download TOML](/presets/toml/bracketed-segments.toml)
<<< @/.vuepress/public/presets/toml/bracketed-segments.toml @[code](../../.vuepress/public/presets/toml/bracketed-segments.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset nerd-font-symbols -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/nerd-font-symbols.toml) [Click to download TOML](/presets/toml/nerd-font-symbols.toml)
<<< @/.vuepress/public/presets/toml/nerd-font-symbols.toml @[code](../../.vuepress/public/presets/toml/nerd-font-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-empty-icons -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/no-empty-icons.toml) [Click to download TOML](/presets/toml/no-empty-icons.toml)
<<< @/.vuepress/public/presets/toml/no-empty-icons.toml @[code](../../.vuepress/public/presets/toml/no-empty-icons.toml)
+1 -1
View File
@@ -16,4 +16,4 @@ starship preset no-nerd-font -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/no-nerd-font.toml) [Click to download TOML](/presets/toml/no-nerd-font.toml)
<<< @/.vuepress/public/presets/toml/no-nerd-font.toml @[code](../../.vuepress/public/presets/toml/no-nerd-font.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-runtime-versions -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/no-runtime-versions.toml) [Click to download TOML](/presets/toml/no-runtime-versions.toml)
<<< @/.vuepress/public/presets/toml/no-runtime-versions.toml @[code](../../.vuepress/public/presets/toml/no-runtime-versions.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset pastel-powerline -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/pastel-powerline.toml) [Click to download TOML](/presets/toml/pastel-powerline.toml)
<<< @/.vuepress/public/presets/toml/pastel-powerline.toml @[code](../../.vuepress/public/presets/toml/pastel-powerline.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset plain-text-symbols -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/plain-text-symbols.toml) [Click to download TOML](/presets/toml/plain-text-symbols.toml)
<<< @/.vuepress/public/presets/toml/plain-text-symbols.toml @[code](../../.vuepress/public/presets/toml/plain-text-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset pure-preset -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/pure-preset.toml) [Click to download TOML](/presets/toml/pure-preset.toml)
<<< @/.vuepress/public/presets/toml/pure-preset.toml @[code](../../.vuepress/public/presets/toml/pure-preset.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset tokyo-night -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/tokyo-night.toml) [Click to download TOML](/presets/toml/tokyo-night.toml)
<<< @/.vuepress/public/presets/toml/tokyo-night.toml @[code](../../.vuepress/public/presets/toml/tokyo-night.toml)
+7 -5
View File
@@ -3,16 +3,18 @@ home: true
heroImage: /logo.svg heroImage: /logo.svg
heroText: heroText:
tagline: Il prompt minimalista, super veloce e infinitamente personalizzabile per qualsiasi shell! tagline: Il prompt minimalista, super veloce e infinitamente personalizzabile per qualsiasi shell!
actionText: Inizia → actions:
actionLink: ./guide/ text: Inizia →
link: ./guide/
type: primary
features: features:
- -
title: Prima la compatibilità title: Prima la compatibilità
details: Funziona sulle shell e sui sistemi operativi più comuni. Usalo ovunque! details: Funziona sulle shell e sui sistemi operativi più comuni. Usalo ovunque!
- -
title: Scritto in Rust title: Scritto in Rust
details: Sfrutta la velocità e sicurezza di Rust, per rendere il tuo prompt il più veloce e il più affidabile. details: Sfrutta la velocità e sicurezza di Rust, per rendere il tuo prompt il più veloce e il più affidabile.
- -
title: Personalizzabile title: Personalizzabile
details: Ogni più piccolo dettaglio è personalizzabile a piacere, per rendere questo prompt minimalista o ricco di tutte le funzionalità che desideri. details: Ogni più piccolo dettaglio è personalizzabile a piacere, per rendere questo prompt minimalista o ricco di tutte le funzionalità che desideri.
footer: Licenza ISC | Copyright © 2019-present Starship Collaboratori footer: Licenza ISC | Copyright © 2019-present Starship Collaboratori
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset bracketed-segments -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/bracketed-segments.toml) [Click to download TOML](/presets/toml/bracketed-segments.toml)
<<< @/.vuepress/public/presets/toml/bracketed-segments.toml @[code](../../.vuepress/public/presets/toml/bracketed-segments.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset nerd-font-symbols -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/nerd-font-symbols.toml) [Click to download TOML](/presets/toml/nerd-font-symbols.toml)
<<< @/.vuepress/public/presets/toml/nerd-font-symbols.toml @[code](../../.vuepress/public/presets/toml/nerd-font-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-empty-icons -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/no-empty-icons.toml) [Click to download TOML](/presets/toml/no-empty-icons.toml)
<<< @/.vuepress/public/presets/toml/no-empty-icons.toml @[code](../../.vuepress/public/presets/toml/no-empty-icons.toml)
+1 -1
View File
@@ -16,4 +16,4 @@ starship preset no-nerd-font -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/no-nerd-font.toml) [Click to download TOML](/presets/toml/no-nerd-font.toml)
<<< @/.vuepress/public/presets/toml/no-nerd-font.toml @[code](../../.vuepress/public/presets/toml/no-nerd-font.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-runtime-versions -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/no-runtime-versions.toml) [Click to download TOML](/presets/toml/no-runtime-versions.toml)
<<< @/.vuepress/public/presets/toml/no-runtime-versions.toml @[code](../../.vuepress/public/presets/toml/no-runtime-versions.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset pastel-powerline -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/pastel-powerline.toml) [Click to download TOML](/presets/toml/pastel-powerline.toml)
<<< @/.vuepress/public/presets/toml/pastel-powerline.toml @[code](../../.vuepress/public/presets/toml/pastel-powerline.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset plain-text-symbols -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/plain-text-symbols.toml) [Click to download TOML](/presets/toml/plain-text-symbols.toml)
<<< @/.vuepress/public/presets/toml/plain-text-symbols.toml @[code](../../.vuepress/public/presets/toml/plain-text-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset pure-preset -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/pure-preset.toml) [Click to download TOML](/presets/toml/pure-preset.toml)
<<< @/.vuepress/public/presets/toml/pure-preset.toml @[code](../../.vuepress/public/presets/toml/pure-preset.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset tokyo-night -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/tokyo-night.toml) [Click to download TOML](/presets/toml/tokyo-night.toml)
<<< @/.vuepress/public/presets/toml/tokyo-night.toml @[code](../../.vuepress/public/presets/toml/tokyo-night.toml)
+7 -5
View File
@@ -3,16 +3,18 @@ home: true
heroImage: /logo.svg heroImage: /logo.svg
heroText: heroText:
tagline: シェル用の最小限の、非常に高速で、無限にカスタマイズ可能なプロンプトです! tagline: シェル用の最小限の、非常に高速で、無限にカスタマイズ可能なプロンプトです!
actionText: Get Started → actions:
actionLink: ./guide/ - text: Get Started →
link: ./guide/
type: primary
features: features:
- -
title: 互換性優先 title: 互換性優先
details: 一般的なほとんどのOSの一般的なほとんどのシェル上で動作します。 あらゆるところで使用してください! details: 一般的なほとんどのOSの一般的なほとんどのシェル上で動作します。 あらゆるところで使用してください!
- -
title: Rust製 title: Rust製
details: Rustの最高レベルの速度と安全性を用いることで、可能な限り高速かつ信頼性を高くしています。 details: Rustの最高レベルの速度と安全性を用いることで、可能な限り高速かつ信頼性を高くしています。
- -
title: カスタマイズ可能 title: カスタマイズ可能
details: それぞれの細かい点は好みにカスタマイズが出来るため、ミニマルにも多機能にも好きなようにプロンプトを設定することができます。 details: それぞれの細かい点は好みにカスタマイズが出来るため、ミニマルにも多機能にも好きなようにプロンプトを設定することができます。
footer: ISC Licensed | Copyright © 2019-present Starship Contributors footer: ISC Licensed | Copyright © 2019-present Starship Contributors
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset bracketed-segments -o ~/.config/starship.toml
[クリックしてTOMLをダウンロード](/presets/toml/bracketed-segments.toml) [クリックしてTOMLをダウンロード](/presets/toml/bracketed-segments.toml)
<<< @/.vuepress/public/presets/toml/bracketed-segments.toml @[code](../../.vuepress/public/presets/toml/bracketed-segments.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset nerd-font-symbols -o ~/.config/starship.toml
[クリックしてTOMLをダウンロード](/presets/toml/nerd-font-symbols.toml) [クリックしてTOMLをダウンロード](/presets/toml/nerd-font-symbols.toml)
<<< @/.vuepress/public/presets/toml/nerd-font-symbols.toml @[code](../../.vuepress/public/presets/toml/nerd-font-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-empty-icons -o ~/.config/starship.toml
[クリックしてTOMLをダウンロード](/presets/toml/no-empty-icons.toml) [クリックしてTOMLをダウンロード](/presets/toml/no-empty-icons.toml)
<<< @/.vuepress/public/presets/toml/no-empty-icons.toml @[code](../../.vuepress/public/presets/toml/no-empty-icons.toml)
+1 -1
View File
@@ -16,4 +16,4 @@ starship preset no-nerd-font -o ~/.config/starship.toml
[クリックしてTOMLをダウンロード](/presets/toml/no-nerd-font.toml) [クリックしてTOMLをダウンロード](/presets/toml/no-nerd-font.toml)
<<< @/.vuepress/public/presets/toml/no-nerd-font.toml @[code](../../.vuepress/public/presets/toml/no-nerd-font.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-runtime-versions -o ~/.config/starship.toml
[クリックしてTOMLをダウンロード](/presets/toml/no-runtime-versions.toml) [クリックしてTOMLをダウンロード](/presets/toml/no-runtime-versions.toml)
<<< @/.vuepress/public/presets/toml/no-runtime-versions.toml @[code](../../.vuepress/public/presets/toml/no-runtime-versions.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset pastel-powerline -o ~/.config/starship.toml
[クリックしてTOMLをダウンロード](/presets/toml/pastel-powerline.toml) [クリックしてTOMLをダウンロード](/presets/toml/pastel-powerline.toml)
<<< @/.vuepress/public/presets/toml/pastel-powerline.toml @[code](../../.vuepress/public/presets/toml/pastel-powerline.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset plain-text-symbols -o ~/.config/starship.toml
[クリックしてTOMLをダウンロード](/presets/toml/plain-text-symbols.toml) [クリックしてTOMLをダウンロード](/presets/toml/plain-text-symbols.toml)
<<< @/.vuepress/public/presets/toml/plain-text-symbols.toml @[code](../../.vuepress/public/presets/toml/plain-text-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset pure-preset -o ~/.config/starship.toml
[クリックしてTOMLをダウンロード](/presets/toml/pure-preset.toml) [クリックしてTOMLをダウンロード](/presets/toml/pure-preset.toml)
<<< @/.vuepress/public/presets/toml/pure-preset.toml @[code](../../.vuepress/public/presets/toml/pure-preset.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset tokyo-night -o ~/.config/starship.toml
[クリックしてTOMLをダウンロード](/presets/toml/tokyo-night.toml) [クリックしてTOMLをダウンロード](/presets/toml/tokyo-night.toml)
<<< @/.vuepress/public/presets/toml/tokyo-night.toml @[code](../../.vuepress/public/presets/toml/tokyo-night.toml)
+7 -5
View File
@@ -3,16 +3,18 @@ home: true
heroImage: /logo.svg heroImage: /logo.svg
heroText: heroText:
tagline: 간결하고 화끈하게 빠르며 무제한으로 커스터마이징이 가능한 프롬프트. 어떤 쉘에서든 사용할 수 있습니다! tagline: 간결하고 화끈하게 빠르며 무제한으로 커스터마이징이 가능한 프롬프트. 어떤 쉘에서든 사용할 수 있습니다!
actionText: Get Started → actions:
actionLink: ./guide/ - text: Get Started →
link: ./guide/
type: primary
features: features:
- -
title: Compatibility First title: Compatibility First
details: Works on the most common shells on the most common operating systems. Use it everywhere! details: Works on the most common shells on the most common operating systems. Use it everywhere!
- -
title: Rust-Powered title: Rust-Powered
details: Brings the best-in-class speed and safety of Rust, to make your prompt as quick and reliable as possible. details: Brings the best-in-class speed and safety of Rust, to make your prompt as quick and reliable as possible.
- -
title: Customizable title: Customizable
details: Every little detail is customizable to your liking, to make this prompt as minimal or feature-rich as you'd like it to be. details: Every little detail is customizable to your liking, to make this prompt as minimal or feature-rich as you'd like it to be.
footer: ISC Licensed | Copyright © 2019-present Starship Contributors footer: ISC Licensed | Copyright © 2019-present Starship Contributors
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset bracketed-segments -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/bracketed-segments.toml) [Click to download TOML](/presets/toml/bracketed-segments.toml)
<<< @/.vuepress/public/presets/toml/bracketed-segments.toml @[code](../../.vuepress/public/presets/toml/bracketed-segments.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset nerd-font-symbols -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/nerd-font-symbols.toml) [Click to download TOML](/presets/toml/nerd-font-symbols.toml)
<<< @/.vuepress/public/presets/toml/nerd-font-symbols.toml @[code](../../.vuepress/public/presets/toml/nerd-font-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-empty-icons -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/no-empty-icons.toml) [Click to download TOML](/presets/toml/no-empty-icons.toml)
<<< @/.vuepress/public/presets/toml/no-empty-icons.toml @[code](../../.vuepress/public/presets/toml/no-empty-icons.toml)
+1 -1
View File
@@ -16,4 +16,4 @@ starship preset no-nerd-font -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/no-nerd-font.toml) [Click to download TOML](/presets/toml/no-nerd-font.toml)
<<< @/.vuepress/public/presets/toml/no-nerd-font.toml @[code](../../.vuepress/public/presets/toml/no-nerd-font.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-runtime-versions -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/no-runtime-versions.toml) [Click to download TOML](/presets/toml/no-runtime-versions.toml)
<<< @/.vuepress/public/presets/toml/no-runtime-versions.toml @[code](../../.vuepress/public/presets/toml/no-runtime-versions.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset pastel-powerline -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/pastel-powerline.toml) [Click to download TOML](/presets/toml/pastel-powerline.toml)
<<< @/.vuepress/public/presets/toml/pastel-powerline.toml @[code](../../.vuepress/public/presets/toml/pastel-powerline.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset plain-text-symbols -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/plain-text-symbols.toml) [Click to download TOML](/presets/toml/plain-text-symbols.toml)
<<< @/.vuepress/public/presets/toml/plain-text-symbols.toml @[code](../../.vuepress/public/presets/toml/plain-text-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset pure-preset -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/pure-preset.toml) [Click to download TOML](/presets/toml/pure-preset.toml)
<<< @/.vuepress/public/presets/toml/pure-preset.toml @[code](../../.vuepress/public/presets/toml/pure-preset.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset tokyo-night -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/tokyo-night.toml) [Click to download TOML](/presets/toml/tokyo-night.toml)
<<< @/.vuepress/public/presets/toml/tokyo-night.toml @[code](../../.vuepress/public/presets/toml/tokyo-night.toml)
+7 -5
View File
@@ -3,16 +3,18 @@ home: true
heroImage: /logo.svg heroImage: /logo.svg
heroText: heroText:
tagline: De minimalistische, razend snelle en oneindig aanpasbare prompt voor elke shell! tagline: De minimalistische, razend snelle en oneindig aanpasbare prompt voor elke shell!
actionText: Get Started → actions:
actionLink: ./guide/ - text: Get Started →
link: ./guide/
type: primary
features: features:
- -
title: Compatibility First title: Compatibility First
details: Works on the most common shells on the most common operating systems. Use it everywhere! details: Works on the most common shells on the most common operating systems. Use it everywhere!
- -
title: Rust-Powered title: Rust-Powered
details: Brings the best-in-class speed and safety of Rust, to make your prompt as quick and reliable as possible. details: Brings the best-in-class speed and safety of Rust, to make your prompt as quick and reliable as possible.
- -
title: Customizable title: Customizable
details: Every little detail is customizable to your liking, to make this prompt as minimal or feature-rich as you'd like it to be. details: Every little detail is customizable to your liking, to make this prompt as minimal or feature-rich as you'd like it to be.
footer: ISC Licensed | Copyright © 2019-present Starship Contributors footer: ISC Licensed | Copyright © 2019-present Starship Contributors
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset bracketed-segments -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/bracketed-segments.toml) [Click to download TOML](/presets/toml/bracketed-segments.toml)
<<< @/.vuepress/public/presets/toml/bracketed-segments.toml @[code](../../.vuepress/public/presets/toml/bracketed-segments.toml)
+1 -1
View File
@@ -18,4 +18,4 @@ starship preset nerd-font-symbols -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/nerd-font-symbols.toml) [Click to download TOML](/presets/toml/nerd-font-symbols.toml)
<<< @/.vuepress/public/presets/toml/nerd-font-symbols.toml @[code](../../.vuepress/public/presets/toml/nerd-font-symbols.toml)
+1 -1
View File
@@ -14,4 +14,4 @@ starship preset no-empty-icons -o ~/.config/starship.toml
[Click to download TOML](/presets/toml/no-empty-icons.toml) [Click to download TOML](/presets/toml/no-empty-icons.toml)
<<< @/.vuepress/public/presets/toml/no-empty-icons.toml @[code](../../.vuepress/public/presets/toml/no-empty-icons.toml)

Some files were not shown because too many files have changed in this diff Show More