Skip to content

Commit

Permalink
docs: document more recommended VSCode settings
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston committed Sep 12, 2023
1 parent be832e1 commit f5e5035
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@

## Usage

> **Note**\
> It is recommended to change `window.titleBarStyle` to `custom` in your JSON user settings.
**Preferred method of installation**

Install the extension from a Marketplace:
Expand Down Expand Up @@ -112,6 +109,28 @@ This means that you will have to either
> **Note**\
> We also have a [Catppuccin Icon Pack](https://marketplace.visualstudio.com/items?itemName=Catppuccin.catppuccin-vsc-icons)!
### VSCode settings

The following settings inside your `settings.json` are recommended for this plugin:

```jsonc
{
// we try to make semantic highlighting look good
"editor.semanticHighlighting.enabled": true,
// prevent VSCode from modifying the terminal colors
"terminal.integrated.minimumContrastRatio": 1,
// make the window's titlebar use the workbench colors
"window.titleBarStyle": "custom",

// applicable if you use Go, this is an opt-in flag!
"gopls": {
"ui.semanticTokens": true
}
}
```

### Catpuccin settings

Catppuccin for VSCode can be customized to your liking. If you like the Catppuccin colors, but feel that they are a bit too bright for working at night, customization got you covered!

```jsonc
Expand Down

0 comments on commit f5e5035

Please sign in to comment.