config
This commit is contained in:
parent
989464c303
commit
3105e5e930
1 changed files with 38 additions and 38 deletions
|
|
@ -3,43 +3,43 @@ vim.pack.add({ "https://github.com/nvim-lualine/lualine.nvim", "https://github.c
|
||||||
local Lualine = require("lualine")
|
local Lualine = require("lualine")
|
||||||
|
|
||||||
Lualine.setup({
|
Lualine.setup({
|
||||||
options = {
|
options = {
|
||||||
icons_enabled = true,
|
icons_enabled = true,
|
||||||
theme = "auto",
|
theme = "auto",
|
||||||
component_separators = { left = "", right = "" },
|
component_separators = { left = "", right = "" },
|
||||||
section_separators = { left = "", right = "" },
|
section_separators = { left = "", right = "" },
|
||||||
disabled_filetypes = {
|
disabled_filetypes = {
|
||||||
statusline = {},
|
statusline = {},
|
||||||
winbar = {},
|
winbar = {},
|
||||||
},
|
|
||||||
ignore_focus = {},
|
|
||||||
always_divide_middle = true,
|
|
||||||
always_show_tabline = true,
|
|
||||||
globalstatus = false,
|
|
||||||
refresh = {
|
|
||||||
statusline = 100,
|
|
||||||
tabline = 100,
|
|
||||||
winbar = 100,
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
sections = {
|
ignore_focus = {},
|
||||||
lualine_a = { "mode" },
|
always_divide_middle = true,
|
||||||
lualine_b = { "branch", "diff", "diagnostics" },
|
always_show_tabline = true,
|
||||||
lualine_c = { "filename" },
|
globalstatus = false,
|
||||||
lualine_x = { "encoding", "fileformat", "filetype" },
|
refresh = {
|
||||||
lualine_y = { "progress" },
|
statusline = 100,
|
||||||
lualine_z = { "location" },
|
tabline = 100,
|
||||||
|
winbar = 100,
|
||||||
},
|
},
|
||||||
inactive_sections = {
|
},
|
||||||
lualine_a = {},
|
sections = {
|
||||||
lualine_b = {},
|
lualine_a = { "mode" },
|
||||||
lualine_c = { "filename" },
|
lualine_b = { "branch", "diff", "diagnostics" },
|
||||||
lualine_x = { "location" },
|
lualine_c = { "filename" },
|
||||||
lualine_y = {},
|
lualine_x = { "encoding", "fileformat", "filetype" },
|
||||||
lualine_z = {},
|
lualine_y = { "progress" },
|
||||||
},
|
lualine_z = { "location" },
|
||||||
tabline = {},
|
},
|
||||||
winbar = {},
|
inactive_sections = {
|
||||||
inactive_winbar = {},
|
lualine_a = {},
|
||||||
extensions = {},
|
lualine_b = {},
|
||||||
})
|
lualine_c = { "filename" },
|
||||||
|
lualine_x = { "location" },
|
||||||
|
lualine_y = {},
|
||||||
|
lualine_z = {},
|
||||||
|
},
|
||||||
|
tabline = {},
|
||||||
|
winbar = {},
|
||||||
|
inactive_winbar = {},
|
||||||
|
extensions = {},
|
||||||
|
})
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue