diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2024-07-15 17:45:53 -0400 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2024-07-15 17:45:53 -0400 |
| commit | d3230ab29e56f97966f05cf2232a2e92d6a1302f (patch) | |
| tree | ed9f7ce3d0c376abd6402bb8b56876193222efe3 /nvim/lua/plugins/lualine.lua | |
| parent | cd7a32285b864f1fa9c453b74111775103b20483 (diff) | |
simplified plugin setups to options
Diffstat (limited to 'nvim/lua/plugins/lualine.lua')
| -rw-r--r-- | nvim/lua/plugins/lualine.lua | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/nvim/lua/plugins/lualine.lua b/nvim/lua/plugins/lualine.lua index b2d4e34..07515ee 100644 --- a/nvim/lua/plugins/lualine.lua +++ b/nvim/lua/plugins/lualine.lua @@ -1,8 +1,7 @@ return { 'nvim-lualine/lualine.nvim', -- lualine dependencies = { 'nvim-tree/nvim-web-devicons', opt = true }, - config = function() - require('lualine').setup({ + opts = { options = { theme = 'auto', globalstatus = true, @@ -31,6 +30,5 @@ return { -- lualine_y = {}, -- lualine_z = {} -- }, - }) - end + }, } |
