Skip to content

Commit 0e6c386

Browse files
committed
feat(artio): add artio.nvim integration
1 parent 12c004c commit 0e6c386

5 files changed

Lines changed: 45 additions & 0 deletions

File tree

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff 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>
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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

lua/catppuccin/init.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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,

lua/catppuccin/types.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@
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:

lua/catppuccin/utils/integration_mappings.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
local 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",

0 commit comments

Comments
 (0)