summaryrefslogtreecommitdiff
path: root/lua/plugins/lualine.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/lualine.lua')
-rw-r--r--lua/plugins/lualine.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/plugins/lualine.lua b/lua/plugins/lualine.lua
index d040375..ca6d853 100644
--- a/lua/plugins/lualine.lua
+++ b/lua/plugins/lualine.lua
@@ -1,6 +1,8 @@
return {
"nvim-lualine/lualine.nvim",
- dependencies = "nvim-tree/nvim-web-devicons",
+ dependencies = {
+ "nvim-tree/nvim-web-devicons",
+ },
event = { "BufReadPre", "BufNewFile" },
config = function()
-- See :help statusline for more information
@@ -76,7 +78,5 @@ return {
vim.opt.ruler = false
-- commands on the right:
vim.opt.showcmd = false
- -- only show tabline when there is more than one tab
- vim.opt.showtabline = 1
end,
}