Files
nvim-hardline/lua/hardline/parts/filename.lua
Olivier Roques b4b2549e21 General update
2020-12-25 18:50:30 +01:00

10 lines
143 B
Lua

local fn = vim.fn
local function get_item()
return table.concat({' ', fn.expand('%:~:.'), ' %r%m '})
end
return {
get_item = get_item,
}