Include relative file path in lualine

This commit is contained in:
Daniel McKnight 2025-06-06 20:49:37 -07:00
parent 6acae117b3
commit c068921d55

View file

@ -1,69 +1,69 @@
return { return {
{ {
"nvim-lualine/lualine.nvim", "nvim-lualine/lualine.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" }, dependencies = { "nvim-tree/nvim-web-devicons" },
config = function() config = function()
require("lualine").setup({ require("lualine").setup({
options = { options = {
--`theme=codedark, --`theme=codedark,
component_separators = { left = "", right = "" }, component_separators = { left = "", right = "" },
section_separators = { left = "", right = "" }, section_separators = { left = "", right = "" },
}, },
sections = { sections = {
lualine_a = { "mode" }, lualine_a = { "mode" },
lualine_b = { "branch", "diff", "diagnostics" }, lualine_b = { "branch", "diff", "diagnostics" },
lualine_c = { "filename" }, lualine_c = { { "filename", path = 1 } },
lualine_x = { "encoding", "filetype" }, lualine_x = { "encoding", "filetype" },
lualine_y = { lualine_y = {
function() function()
-- Display an active Python virtual environment if active -- Display an active Python virtual environment if active
local venv = os.getenv("VIRTUAL_ENV") local venv = os.getenv("VIRTUAL_ENV")
if venv then if venv then
return vim.fn.fnamemodify(venv, ":t") return vim.fn.fnamemodify(venv, ":t")
-- Put other useful paths here as available -- Put other useful paths here as available
else else
return "" return ""
end end
end, end,
}, },
lualine_z = { "location" }, lualine_z = { "location" },
}, },
}) })
end, end,
}, },
{ {
"romgrk/barbar.nvim", "romgrk/barbar.nvim",
tag = "v1.9.0", tag = "v1.9.0",
--init = function() --init = function()
-- vim.g.barbar_auto_setup = false -- vim.g.barbar_auto_setup = false
--end, --end,
}, },
{ {
"goolord/alpha-nvim", "goolord/alpha-nvim",
vim.keymap.set("n", "<A-left>", ":BufferPrevious<CR>", { desc = "Previous Buffer" }), vim.keymap.set("n", "<A-left>", ":BufferPrevious<CR>", { desc = "Previous Buffer" }),
vim.keymap.set("n", "<A-right>", ":BufferNext<CR>", { desc = "Next Buffer" }), vim.keymap.set("n", "<A-right>", ":BufferNext<CR>", { desc = "Next Buffer" }),
vim.keymap.set("n", "<leader>bq", ":BufferClose<CR>", { desc = "Close Buffer" }), vim.keymap.set("n", "<leader>bq", ":BufferClose<CR>", { desc = "Close Buffer" }),
vim.keymap.set("n", "<A-q>", ":BufferClose<CR>", { desc = "Close Buffer" }), vim.keymap.set("n", "<A-q>", ":BufferClose<CR>", { desc = "Close Buffer" }),
vim.keymap.set("n", "<leader>bp", ":BufferPrevious<CR>", { desc = "Previous Buffer" }), vim.keymap.set("n", "<leader>bp", ":BufferPrevious<CR>", { desc = "Previous Buffer" }),
vim.keymap.set("n", "<leader>bn", ":BufferNext<CR>", { desc = "Next Buffer" }), vim.keymap.set("n", "<leader>bn", ":BufferNext<CR>", { desc = "Next Buffer" }),
dependencies = { "nvim-tree/nvim-web-devicons" }, dependencies = { "nvim-tree/nvim-web-devicons" },
config = function() config = function()
local alpha = require("alpha") local alpha = require("alpha")
local dashboard = require("alpha.themes.startify") local dashboard = require("alpha.themes.startify")
dashboard.section.header.val = { dashboard.section.header.val = {
" ", " ",
" ███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗ ", " ███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗ ",
" ████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║ ", " ████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║ ",
" ██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║ ", " ██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║ ",
" ██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║ ", " ██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║ ",
" ██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║ ", " ██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║ ",
" ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝ ", " ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝ ",
" ", " ",
} }
alpha.setup(dashboard.opts) alpha.setup(dashboard.opts)
end, end,
}, },
} }