1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-09-16 14:12:39 +00:00
dotfiles/.config/nvim/lua/plugins/lualine.lua

94 lines
1.9 KiB
Lua
Raw Normal View History

2022-10-01 11:46:18 +00:00
local hide_in_width = function()
return vim.fn.winwidth(0) > 80
end
local diagnostics = {
"diagnostics",
sources = { "nvim_diagnostic" },
sections = { "error", "warn" },
2022-11-09 20:17:06 +00:00
symbols = { error = "", warn = "!" },
2022-10-01 11:46:18 +00:00
colored = false,
2022-11-09 20:17:06 +00:00
always_visible = true,
2022-10-01 11:46:18 +00:00
}
local diff = {
"diff",
colored = false,
2022-11-09 20:17:06 +00:00
symbols = { added = "+", modified = "", removed = "" },
2022-10-01 11:46:18 +00:00
cond = hide_in_width,
}
local filetype = {
"filetype",
2022-11-09 20:17:06 +00:00
colored = false,
separator = "",
2022-10-01 11:46:18 +00:00
}
2022-11-09 20:17:06 +00:00
local lsp_progress = {
"lsp_progress",
display_components = { "spinner" },
2023-03-31 18:44:46 +00:00
spinner_symbols = { "", "", "", "", "", "", "", "" },
2022-10-01 11:46:18 +00:00
}
local spaces = function()
local expandtab = vim.api.nvim_buf_get_option(0, "expandtab")
local title = "spaces: "
if not expandtab then
title = "tab: "
end
return title .. vim.api.nvim_buf_get_option(0, "shiftwidth")
2022-10-01 11:46:18 +00:00
end
2022-10-08 12:57:06 +00:00
local venv = function()
local venv = os.getenv("VIRTUAL_ENV")
if venv then
2022-11-06 19:34:46 +00:00
return string.format(" %s", string.match(venv, "[^/]+$"))
2022-10-08 12:57:06 +00:00
end
return ""
end
local get_schema = function()
local ft = vim.bo.filetype or ""
if ft == "yaml" then
local schema = require("yaml-companion").get_buf_schema(0)
if schema.result[1].name == "none" then
return ""
end
return "(" .. schema.result[1].name .. ")"
else
return ""
end
end
2023-04-12 18:09:30 +00:00
local gitblame = require("gitblame")
2022-10-01 11:46:18 +00:00
vim.g.gitblame_date_format = "%r"
vim.g.gitblame_display_virtual_text = 0
vim.g.gitblame_message_template = "<author>, <date>"
2023-04-12 18:09:30 +00:00
require("lualine").setup({
2022-10-01 11:46:18 +00:00
options = {
globalstatus = true,
},
sections = {
lualine_a = { "mode" },
2022-11-06 19:34:46 +00:00
lualine_b = { "branch", venv },
2022-12-23 17:28:37 +00:00
lualine_c = { diagnostics, { "filename", path = 1 }, "searchcount", lsp_progress },
2022-10-01 11:46:18 +00:00
lualine_x = {
{ gitblame.get_current_blame_text, cond = gitblame.is_blame_text_available },
diff,
spaces,
"encoding",
filetype,
{ get_schema, separator = "" },
2022-10-01 11:46:18 +00:00
},
2022-11-09 20:17:06 +00:00
lualine_y = { "progress" },
lualine_z = { "location" },
2022-10-01 11:46:18 +00:00
},
})