151 lines
2.8 KiB
Lua
151 lines
2.8 KiB
Lua
local lualine = require("lualine")
|
|
local devicons = require("nvim-web-devicons")
|
|
local formatting = require("formatting")
|
|
|
|
local mode = {
|
|
"mode",
|
|
}
|
|
|
|
local branch = {
|
|
"branch",
|
|
icons_enabled = true,
|
|
icon = "",
|
|
}
|
|
|
|
local diagnostics = {
|
|
"diagnostics",
|
|
sections = { "error", "warn" },
|
|
always_visible = true,
|
|
}
|
|
|
|
local relative_filename = {
|
|
"filename",
|
|
path = 1,
|
|
}
|
|
|
|
local formatting_status = {
|
|
function()
|
|
local is_formatting_enabled = formatting.is_enabled(vim.api.nvim_get_current_buf())
|
|
if is_formatting_enabled then
|
|
return "[f+]"
|
|
else
|
|
return "[f-]"
|
|
end
|
|
end,
|
|
}
|
|
|
|
local searchcount = {
|
|
"searchcount",
|
|
}
|
|
|
|
local macro_recording = {
|
|
function()
|
|
local symbol = vim.fn.reg_recording()
|
|
if symbol ~= "" then
|
|
return "@" .. symbol
|
|
else
|
|
return ""
|
|
end
|
|
end,
|
|
}
|
|
|
|
local filetype = {
|
|
function()
|
|
local filetype = vim.bo.filetype
|
|
local filename = vim.fn.expand("%:t")
|
|
local fileext = vim.fn.expand("%:e")
|
|
local icon = devicons.get_icon(filename, fileext)
|
|
|
|
if filetype == "fugitive" then
|
|
icon = devicons.get_icons().git.icon
|
|
end
|
|
|
|
if not icon then
|
|
return filetype
|
|
end
|
|
|
|
return icon .. " " .. filetype
|
|
end,
|
|
}
|
|
|
|
local filename = {
|
|
function()
|
|
local filetype = vim.bo.filetype
|
|
local filename = vim.fn.expand("%:t")
|
|
local fileext = vim.fn.expand("%:e")
|
|
local icon = devicons.get_icon(filename, fileext)
|
|
local modified = vim.bo.modified
|
|
|
|
if filetype == "fugitive" then
|
|
icon = devicons.get_icons().git.icon
|
|
end
|
|
|
|
if not icon then
|
|
return filename
|
|
end
|
|
|
|
local items = { icon, filename }
|
|
|
|
if modified then
|
|
table.insert(items, "[+]")
|
|
end
|
|
|
|
return table.concat(items, " ")
|
|
end,
|
|
}
|
|
|
|
local fileformat = {
|
|
function()
|
|
return "[" .. vim.bo.fileformat .. "]"
|
|
end,
|
|
}
|
|
|
|
local tabstop = {
|
|
function()
|
|
local tabstop = vim.bo.tabstop
|
|
local expandtab = vim.bo.expandtab
|
|
|
|
local method = expandtab == true and "spaces" or "tabs"
|
|
local format = tabstop .. " " .. method
|
|
|
|
return format
|
|
end,
|
|
}
|
|
|
|
local location = {
|
|
function()
|
|
local line = vim.fn.line(".")
|
|
local total_lines = vim.api.nvim_buf_line_count(0)
|
|
|
|
return line .. "/" .. total_lines
|
|
end,
|
|
}
|
|
|
|
lualine.setup({
|
|
options = {
|
|
component_separators = "",
|
|
section_separators = "",
|
|
globalstatus = true,
|
|
disabled_filetypes = {
|
|
winbar = {
|
|
"NvimTree",
|
|
},
|
|
},
|
|
},
|
|
winbar = {
|
|
lualine_a = { filename },
|
|
},
|
|
inactive_winbar = {
|
|
lualine_c = { filename },
|
|
},
|
|
sections = {
|
|
lualine_a = { mode },
|
|
lualine_b = { branch },
|
|
lualine_c = { diagnostics, relative_filename },
|
|
lualine_x = { macro_recording, searchcount, formatting_status, location, tabstop, fileformat },
|
|
lualine_y = { filetype },
|
|
lualine_z = {},
|
|
},
|
|
extensions = { "nvim-tree", "fugitive", "quickfix" },
|
|
})
|