summaryrefslogtreecommitdiff
path: root/lua/lualine
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2021-10-21 07:48:10 +0200
committerkylo252 <[email protected]>2021-10-21 07:48:10 +0200
commit30de3736baec9a72134205de91f3388e3ea68bcf (patch)
treec0079f51d68c61316726f104bae963c5f0371571 /lua/lualine
parentb98264042f558751483e2c993ebed11a5bcbb1de (diff)
parent25747cfff457d5375b6141588d81017ca515ffcb (diff)
Merge remote-tracking branch 'origin/rolling'
Diffstat (limited to 'lua/lualine')
-rw-r--r--lua/lualine/themes/onedarker.lua35
1 files changed, 0 insertions, 35 deletions
diff --git a/lua/lualine/themes/onedarker.lua b/lua/lualine/themes/onedarker.lua
deleted file mode 100644
index 396657bb..00000000
--- a/lua/lualine/themes/onedarker.lua
+++ /dev/null
@@ -1,35 +0,0 @@
--- Copyright (c) 2020-2021 shadmansaleh
--- MIT license, see LICENSE for more details.
--- Credit: Zoltan Dalmadi(lightline)
--- LuaFormatter off
-local colors = {
- blue = "#61afef",
- green = "#98c379",
- purple = "#c678dd",
- red1 = "#e06c75",
- red2 = "#be5046",
- yellow = "#e5c07b",
- orange = "#D19A66",
- fg = "#abb2bf",
- bg = "#282c34",
- gray1 = "#5c6370",
- gray2 = "#2c323d",
- gray3 = "#3e4452",
-}
--- LuaFormatter on
-return {
- normal = {
- a = { fg = colors.fg, bg = colors.blue, gui = "bold" },
- b = { fg = colors.fg, bg = colors.bg },
- c = { fg = colors.fg, bg = colors.bg },
- },
- insert = { a = { fg = colors.fg, bg = colors.green, gui = "bold" } },
- visual = { a = { fg = colors.fg, bg = colors.purple, gui = "bold" } },
- command = { a = { fg = colors.fg, bg = colors.yellow, gui = "bold" } },
- replace = { a = { fg = colors.fg, bg = colors.red1, gui = "bold" } },
- inactive = {
- a = { fg = colors.gray1, bg = colors.bg, gui = "bold" },
- b = { fg = colors.gray1, bg = colors.bg },
- c = { fg = colors.gray1, bg = colors.bg },
- },
-}