summaryrefslogtreecommitdiffstats
path: root/lua/core/overrides/lualine.lua
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2022-12-30 12:44:28 -0500
committerSquibid <me@zacharyscheiman.com>2022-12-30 12:44:28 -0500
commit4ec198e9de4c29378a9307f739770e71282d5d45 (patch)
tree332bed8d9fa2c91e8469faf74ac50ccfaa631c4b /lua/core/overrides/lualine.lua
parenteaa58ff6184e6b0bb3abf03d2314864795a13fbd (diff)
downloadnvim-4ec198e9de4c29378a9307f739770e71282d5d45.tar.gz
nvim-4ec198e9de4c29378a9307f739770e71282d5d45.tar.bz2
nvim-4ec198e9de4c29378a9307f739770e71282d5d45.zip
fix config not working in other dirs. whoops
Diffstat (limited to 'lua/core/overrides/lualine.lua')
-rw-r--r--lua/core/overrides/lualine.lua119
1 files changed, 119 insertions, 0 deletions
diff --git a/lua/core/overrides/lualine.lua b/lua/core/overrides/lualine.lua
new file mode 100644
index 0000000..21473f9
--- /dev/null
+++ b/lua/core/overrides/lualine.lua
@@ -0,0 +1,119 @@
+local custom = require'lualine.themes.auto'
+
+custom.normal = {
+ a = { fg = colors.black, bg = colors.blue, gui = 'bold' },
+ b = { fg = colors.black, bg = colors.blue, gui = 'bold' },
+ c = { fg = colors.white, bg = colors.grey },
+ x = {},
+ y = { fg = colors.blue, bg = colors.black2 },
+ z = { fg = colors.black2, bg = colors.blue, gui = 'bold' },
+}
+custom.insert = {
+ a = { fg = colors.black, bg = colors.green, gui = 'bold' },
+ b = { fg = colors.black, bg = colors.green, gui = 'bold' },
+ c = { fg = colors.white, bg = colors.grey },
+ x = {},
+ y = { fg = colors.green, bg = colors.black2 },
+ z = { fg = colors.black2, bg = colors.green, gui = 'bold' },
+}
+custom.replace = {
+ a = { fg = colors.black, bg = colors.orange, gui = 'bold' },
+ b = { fg = colors.black, bg = colors.orange, gui = 'bold' },
+ c = { fg = colors.white, bg = colors.grey },
+ x = {},
+ y = { fg = colors.orange, bg = colors.black2 },
+ z = { fg = colors.black2, bg = colors.orange, gui = 'bold' },
+}
+custom.visual = {
+ a = { fg = colors.black, bg = colors.purple, gui = 'bold' },
+ b = { fg = colors.black, bg = colors.purple, gui = 'bold' },
+ c = { fg = colors.white, bg = colors.grey },
+ x = {},
+ y = { fg = colors.purple, bg = colors.black2 },
+ z = { fg = colors.black2, bg = colors.purple, gui = 'bold' },
+}
+custom.command = {
+ a = { fg = colors.black, bg = colors.red, gui = 'bold' },
+ b = { fg = colors.black, bg = colors.red, gui = 'bold' },
+ c = { fg = colors.white, bg = colors.grey },
+ x = {},
+ y = { fg = colors.red, bg = colors.black2 },
+ z = { fg = colors.black2, bg = colors.red, gui = 'bold' },
+}
+custom.terminal = {
+ a = { fg = colors.black, bg = colors.yellow, gui = 'bold' },
+ b = { fg = colors.black, bg = colors.yellow, gui = 'bold' },
+ c = { fg = colors.white, bg = colors.grey },
+ x = {},
+ y = { fg = colors.yellow, bg = colors.black2 },
+ z = { fg = colors.black2, bg = colors.yellow, gui = 'bold' },
+}
+custom.inactive = {
+ a = { bg = colors.grey },
+ b = { bg = colors.grey },
+ c = { bg = colors.grey },
+ x = { bg = colors.grey },
+ y = { bg = colors.grey },
+ z = { bg = colors.grey },
+}
+
+local function diff_source()
+ local gitsigns = vim.b.gitsigns_status_dict
+ if gitsigns then
+ return {
+ added = gitsigns.added,
+ modified = gitsigns.changed,
+ removed = gitsigns.removed
+ }
+ end
+end
+
+require('lualine').setup {
+ options = {
+ icons_enabled = false,
+ component_separators = { left = '', right = '' },
+ section_separators = { left = '', right = '' },
+ theme = custom,
+ always_divide_middle = false,
+ globalstatus = false,
+ refresh = {
+ statusline = 100,
+ tabline = 1000,
+ winbar = 1000,
+ }
+ },
+ sections = {
+ lualine_a = {'mode'},
+ lualine_b = {
+ { 'filetype',
+ color = { fg = colors.white, bg = colors.grey },
+ },
+ { 'filename',
+ filestatus = true,
+ path = 1,
+
+ symbols = {
+ modified = '[+]',
+ readonly = '[=]',
+ unnamed = 'No Name',
+ newfile = '[New]',
+ }
+ }
+ },
+ lualine_c = { { 'diff', source = diff_source } },
+ lualine_x = {
+ { 'fileformat',
+ color = { gui = 'bold' }
+ }
+ },
+ lualine_y = {'progress'},
+ lualine_z = {
+ { 'location',
+ padding = 1,
+ }
+ }
+ },
+ inactive_sections = {
+ lualine_x = {'location'},
+ },
+}