Made filepaths display relative. Makes working on two files of the same name easier.

This commit is contained in:
Warwick 2023-08-08 11:17:02 +01:00
parent c3bf484668
commit 3ae5e06d23

View file

@ -2,5 +2,14 @@ require('lualine').setup {
options = { options = {
icons_enabled = true, icons_enabled = true,
theme = 'gruvbox', theme = 'gruvbox',
},
sections = {
lualine_a = {
{
'filename',
file_status = true, -- displays file status (readonly status, modified status)
path = 1 -- 0 = just filename, 1 = relative path, 2 = absolute path
}
}
} }
} }