diff options
author | Hunt <lizhunt@amazon.com> | 2025-06-07 17:33:01 -0700 |
---|---|---|
committer | Hunt <lizhunt@amazon.com> | 2025-06-07 17:41:41 -0700 |
commit | 058b3be4feb7eda3810172537039c48ac36441a5 (patch) | |
tree | 7ec47d4431260b3da65516212d43a8da05a94cda /dots/nvim | |
parent | fe6a59ea558971a2c3e532e922b4fc4232bc1719 (diff) | |
download | dotfiles-058b3be4feb7eda3810172537039c48ac36441a5.tar.gz dotfiles-058b3be4feb7eda3810172537039c48ac36441a5.zip |
Fix theming stuff
Diffstat (limited to 'dots/nvim')
-rw-r--r-- | dots/nvim/.config/nvim/lua/plugins/lualine.lua.j2 | 47 | ||||
-rw-r--r-- | dots/nvim/.config/nvim/lua/plugins/theme.lua.j2 | 2 |
2 files changed, 17 insertions, 32 deletions
diff --git a/dots/nvim/.config/nvim/lua/plugins/lualine.lua.j2 b/dots/nvim/.config/nvim/lua/plugins/lualine.lua.j2 index dd44249..437620b 100644 --- a/dots/nvim/.config/nvim/lua/plugins/lualine.lua.j2 +++ b/dots/nvim/.config/nvim/lua/plugins/lualine.lua.j2 @@ -1,35 +1,20 @@ return { - { - 'nvim-lualine/lualine.nvim', - event = 'VeryLazy', - opts = function() - return { - options = { - icons_enabled = true, - theme = '{{ theme.nvim.lualine_theme }}', - component_separators = { left = '', right = ''}, - section_separators = { left = '', right = ''}, + "nvim-lualine/lualine.nvim", + event = "VeryLazy", + opts = function() + return { + options = { + icons_enabled = true, + theme = "{{ theme.nvim.lualine_theme }}", + component_separators = { left = "", right = ""}, + section_separators = { left = "", right = ""}, + }, + sections = { + lualine_c = { + { "filename", path = 1 }, }, - sections = { - lualine_c = { - { 'filename', path = 1 }, - }, - lualine_y = { - { - require('tmux-status').tmux_windows, - cond = require('tmux-status').show, - padding = { left = 1, right = 1 }, - }, - } - }, - } - end, - }, - - { - "christopher-francisco/tmux-status.nvim", - -- lazy = true, - opts = {}, - }, + }, + } + end } diff --git a/dots/nvim/.config/nvim/lua/plugins/theme.lua.j2 b/dots/nvim/.config/nvim/lua/plugins/theme.lua.j2 index dd47aee..3b41dbe 100644 --- a/dots/nvim/.config/nvim/lua/plugins/theme.lua.j2 +++ b/dots/nvim/.config/nvim/lua/plugins/theme.lua.j2 @@ -2,7 +2,7 @@ return { { "ellisonleao/gruvbox.nvim", opts = { - transparent_mode = true, + -- transparent_mode = true, } }, |