summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Chaussé <Benjamin.Chausse@goto.com>2024-07-17 10:32:14 -0400
committerBenjamin Chaussé <Benjamin.Chausse@goto.com>2024-07-17 10:32:14 -0400
commitadf33a256877b7544b7674963f309846b11b1104 (patch)
tree944d91282d5d03995ef588c24481e33d9d50b73f
parent4ecd0685f327d189805e2a65700fd2a34e1040c9 (diff)
Always-on Tabline to view nvim's cwd
-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,
}