Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ You must update your configuration like this:
appearance = {
-- Blink does not expose its default kind icons so you must copy them all (or set your custom ones) and add Copilot
kind_icons = {
Copilot = "",
Copilot = "",
Text = '󰉿',
Method = '󰊕',
Function = '󰊕',
Expand Down Expand Up @@ -132,3 +132,21 @@ You must update your configuration like this:
},
...
```

##### Lazy

For lazy.nvim, you could set `opts_extend` to avoid repeating the default config:

```lua
...
opts = {
...
appearance = {
kind_icons = {
Copilot = "",
},
},
-- Set `opts_extend` to preserve the default config
opts_extend = { appearance.kind_icons" },
...
```