diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-14 21:52:31 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-14 21:52:51 +0100 |
commit | ad5ac4c99cfe1b4bec7c4733cfe9a546c4f23a10 (patch) | |
tree | 92cb5f498bd9046916826fe84b4fda6e91f6361d /lua | |
parent | c8232c7e38eca2b855fc2ea840bced86dce1bc7a (diff) |
Remove Buffer
Remove Buffer
Diffstat (limited to 'lua')
-rw-r--r-- | lua/no-clown-fiesta/Buffer.lua | 19 | ||||
-rw-r--r-- | lua/no-clown-fiesta/init.lua | 2 |
2 files changed, 0 insertions, 21 deletions
diff --git a/lua/no-clown-fiesta/Buffer.lua b/lua/no-clown-fiesta/Buffer.lua deleted file mode 100644 index f2f2636..0000000 --- a/lua/no-clown-fiesta/Buffer.lua +++ /dev/null @@ -1,19 +0,0 @@ -local Buffer = { - BufferCurrent = { fg = C.gray, bg = C.bg }, - BufferCurrentIndex = { fg = C.fg, bg = C.bg }, - BufferCurrentMod = { fg = C.info_yellow, bg = C.bg }, - BufferCurrentSign = { fg = C.hint_blue, bg = C.bg }, - BufferCurrentTarget = { fg = C.red, bg = C.bg, style = "bold" }, - BufferVisible = { fg = C.fg, bg = C.bg }, - BufferVisibleIndex = { fg = C.fg, bg = C.bg }, - BufferVisibleMod = { fg = C.info_yellow, bg = C.bg }, - BufferVisibleSign = { fg = C.gray, bg = C.bg }, - BufferVisibleTarget = { fg = C.red, bg = C.bg, style = "bold" }, - BufferInactive = { fg = C.gray, bg = C.alt_bg }, - BufferInactiveIndex = { fg = C.gray, bg = C.alt_bg }, - BufferInactiveMod = { fg = C.info_yellow, bg = C.alt_bg }, - BufferInactiveSign = { fg = C.gray, bg = C.alt_bg }, - BufferInactiveTarget = { fg = C.red, bg = C.alt_bg, style = "bold" }, -} - -return Buffer diff --git a/lua/no-clown-fiesta/init.lua b/lua/no-clown-fiesta/init.lua index 4f02772..8f81fd0 100644 --- a/lua/no-clown-fiesta/init.lua +++ b/lua/no-clown-fiesta/init.lua @@ -10,7 +10,6 @@ local util = require("no-clown-fiesta.util") Config = require("no-clown-fiesta.config") C = require("no-clown-fiesta.palette") -local Buffer = require("no-clown-fiesta.Buffer") local Alpha = require("no-clown-fiesta.Alpha") local Git = require("no-clown-fiesta.Git") local highlights = require("no-clown-fiesta.highlights") @@ -20,7 +19,6 @@ local Treesitter = require("no-clown-fiesta.Treesitter") local Whichkey = require("no-clown-fiesta.Whichkey") local skeletons = { - Buffer, Alpha, Git, highlights, |