Note
Useful information that users should know, even when skimming content.
Tip
Helpful advice for doing things better or more easily.
Important
Key information users need to know to achieve their goal.
[!WARNING]
| "animations.Enabled": true , | |
| "animations.Smooth-Mode": true , | |
| "animations.CursorAnimation": true , | |
| "animations.Command-Palette": "Scale" , | |
| "animations.Focus-Dimming-Mode": "None" , | |
| "animations.Install-Method": "Custom UI Style" , | |
| "animations.CursorAnimationOptions": { | |
| "TrailLength": 50 , | |
| "Color": "#39ffe680" , | |
| "CursorStyle": "block" |
| @keyframes cursorExpandShrinkGradient | |
| { | |
| 0%, | |
| 100% | |
| { | |
| transform: scaleY(0); | |
| background-position: center 0%; | |
| background-size: 100% 200%; | |
| filter: drop-shadow(0 0 0 rgba(46, 250, 250, 0.07)); |
| .monaco-workbench .part >.title > .title-label , | |
| .monaco-workbench .part >.title > .title-label h2 , | |
| .monaco-pane-view .pane>.pane-header h3.title { | |
| font-size: 1em !important; | |
| text-align: center; | |
| padding: 0.1em 0.5em 0.5em 0.5em; | |
| font-family: 'MonaspiceKr Nerd Font' !important; | |
| font-feature-settings: "'calt', 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'ss09', 'liga'"; | |
| } |
| // Theme // | |
| * { | |
| main-bg: #11111b95; | |
| main-fg: #cdd6f4ff; | |
| main-br: #cba6f7ff; | |
| main-ex: #f5e0dcff; | |
| select-bg: #b4befeff; | |
| select-fg: #11111bff; | |
| separatorcolor: transparent; | |
| border-color: transparent; |
Note
Useful information that users should know, even when skimming content.
Tip
Helpful advice for doing things better or more easily.
Important
Key information users need to know to achieve their goal.
[!WARNING]
| # ~/.config/starship.toml | |
| # Inserts a blank line between shell prompts | |
| add_newline = true | |
| # Change the default prompt format | |
| format = """ | |
| [╭╴](bold purple)$os $time\ | |
| | $all[╰─](red)$character\ | |
| """ |