diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/starship.toml | 33 |
1 files changed, 20 insertions, 13 deletions
diff --git a/.config/starship.toml b/.config/starship.toml index 1e2cb06..8daea98 100644 --- a/.config/starship.toml +++ b/.config/starship.toml @@ -19,8 +19,10 @@ style = 'red bold' [character] format = '$symbol ' -success_symbol = '[❯](bold green)' -error_symbol = '[❯](bold red)' +#success_symbol = '[❯](bold green)' +#error_symbol = '[❯](bold red)' +success_symbol = '[\$](bold green)' +error_symbol = '[\$](bold red)' vicmd_symbol = '[❮](bold green)' disabled = false @@ -84,15 +86,18 @@ version_format = 'v${raw}' symbol = '🦕 ' style = 'green bold' disabled = false -detect_extensions = [ - "js", - "ts", -] +#detect_extensions = [ +# "js", +# "ts", +#] detect_files = [ 'mod.ts', 'deps.ts', 'mod.js', 'deps.js', + 'main.ts', + 'deno.json', + 'deno.jsonc', ] detect_folders = [] @@ -136,7 +141,7 @@ detect_extensions = [ 'csproj', 'fsproj', 'xproj', - 'cs', + 'cs', ] detect_files = [ 'global.json', @@ -401,20 +406,22 @@ format = 'via [$symbol($version )]($style)' version_format = 'v${raw}' symbol = ' ' style = 'bold green' -disabled = false +disabled = true not_capable_style = 'bold red' detect_extensions = [ -#'js', - 'mjs', - 'cjs', -#'ts', + 'js', + 'mjs', + 'cjs', + 'ts', ] detect_files = [ 'package.json', '.node-version', '.nvmrc', ] -detect_folders = ['node_modules'] +detect_folders = [ + 'node_modules' +] [ocaml] format = 'via [$symbol($version )(\($switch_indicator$switch_name\) )]($style)' |