File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -325,6 +325,22 @@ alpha = true
325325</tr >
326326<!-- alpha.nvim -->
327327
328+ <!-- artio.nvim -->
329+ </tr >
330+ <tr
331+ <tr >
332+ <td > <a href =" https://github.com/comfysage/artio.nvim " >artio.nvim</a > </td >
333+ <td >
334+
335+ ``` lua
336+ artio = true
337+ ```
338+
339+ </td >
340+
341+ </tr >
342+ <!-- artio.nvim -->
343+
328344<!-- barbar.nvim -->
329345</tr >
330346<tr >
Original file line number Diff line number Diff line change 1+ local M = {}
2+
3+ M .url = " https://github.com/comfysage/artio.nvim"
4+
5+ function M .get ()
6+ local transparent_background = require (" catppuccin" ).options .transparent_background
7+
8+ return {
9+ ArtioNormal = {
10+ fg = C .text ,
11+ bg = transparent_background and " NONE" or C .mantle ,
12+ },
13+ ArtioSel = {
14+ fg = C .flamingo ,
15+ bg = C .surface0 ,
16+ style = { " bold" },
17+ },
18+ ArtioMatch = { fg = C .blue },
19+ ArtioPointer = { fg = C .flamingo },
20+ ArtioPrompt = { fg = C .blue },
21+ ArtioMark = { fg = C .yellow },
22+ ArtioMarkLine = { link = " Visual" },
23+ }
24+ end
25+
26+ return M
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ local M = {
6363 auto_integrations = false ,
6464 integrations = {
6565 alpha = true ,
66+ artio = true ,
6667 blink_cmp = { enabled = true , style = " bordered" },
6768 blink_indent = true ,
6869 fzf = true ,
Original file line number Diff line number Diff line change 122122--- @class CtpIntegrations
123123--- @field aerial boolean ?
124124--- @field alpha boolean ?
125+ --- @field artio boolean ?
125126--- @field avante CtpIntegratinAvant | boolean ?
126127--- @field barbar boolean ?
127128-- Use this to set it up:
Original file line number Diff line number Diff line change 11local M = {
22 [" aerial.nvim" ] = " aerial" ,
33 [" alpha-nvim" ] = " alpha" ,
4+ [" artio.nvim" ] = " artio" ,
45 [" avante.nvim" ] = " avante" ,
56 [" barbar.nvim" ] = " barbar" ,
67 [" beacon.nvim" ] = " beacon" ,
You can’t perform that action at this time.
0 commit comments