diff options
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, } }, |