nvim/lua/plugins/lualine.lua

26 lines
1,018 B
Lua
Raw Normal View History

2023-05-16 09:22:33 +01:00
return {
"nvim-lualine/lualine.nvim",
dependencies = { "nvim-tree/nvim-web-devicons", "folke/noice.nvim", "folke/tokyonight.nvim" },
event = { "BufReadPre", "BufNewFile" },
2023-05-16 09:22:33 +01:00
config = true,
opts = {
options = {
theme = "tokyonight",
2023-05-16 09:22:33 +01:00
component_separators = "|",
section_separators = { left = "", right = "" },
globalstatus = true,
},
sections = {
lualine_a = { { "mode", separator = { left = "" }, right_padding = 2 } },
2023-05-16 09:22:33 +01:00
lualine_b = { "filename", { "branch", icon = "󰊢" }, "diff" },
lualine_c = { "diagnostics" },
2023-05-16 09:22:33 +01:00
lualine_x = { "filetype", "fileformat", "encoding" },
lualine_y = { "progress" },
lualine_z = { "selectioncount", { "location", separator = { right = "" }, left_padding = 2 } },
2023-05-16 09:22:33 +01:00
},
tabline = {},
2023-05-16 09:22:33 +01:00
winbar = {},
extensions = { "aerial", "fzf", "lazy", "neo-tree", "toggleterm", "trouble" },
},
}