59 lines
2.2 KiB
Lua
59 lines
2.2 KiB
Lua
-- Highly configurable status line
|
|
-- https://github.com/nvim-lualine/lualine.nvim
|
|
return {
|
|
'nvim-lualine/lualine.nvim',
|
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
|
opts = {
|
|
options = {
|
|
theme = 'catppuccin',
|
|
icons_enabled = true,
|
|
component_separators = { left = '', right = '' },
|
|
section_separators = { left = '', right = '' },
|
|
},
|
|
sections = {
|
|
lualine_a = { 'mode' },
|
|
lualine_b = { 'diagnostics' },
|
|
lualine_c = {
|
|
{
|
|
'filename',
|
|
file_status = true, -- Displays file status (readonly status, modified status)
|
|
newfile_status = true, -- Display new file status (new file means no write after created)
|
|
path = 1, -- Relative path
|
|
shorting_target = 40, -- Shortens path to leave 40 spaces in the window
|
|
symbols = {
|
|
modified = '', -- Text to show when the file is modified.
|
|
readonly = '', -- Text to show when the file is non-modifiable or readonly.
|
|
unnamed = '[No Name]', -- Text to show for unnamed buffers.
|
|
newfile = '', -- Text to show for newly created file before first write
|
|
},
|
|
},
|
|
},
|
|
lualine_x = { 'fileformat', 'filetype' },
|
|
lualine_y = { 'progress' },
|
|
lualine_z = { 'location' },
|
|
},
|
|
inactive_sections = {
|
|
lualine_a = {},
|
|
lualine_b = {},
|
|
lualine_c = {
|
|
{
|
|
'filename',
|
|
file_status = true, -- Displays file status (readonly status, modified status)
|
|
newfile_status = true, -- Display new file status (new file means no write after created)
|
|
path = 1, -- Relative path
|
|
shorting_target = 40, -- Shortens path to leave 40 spaces in the window
|
|
symbols = {
|
|
modified = '', -- Text to show when the file is modified.
|
|
readonly = '', -- Text to show when the file is non-modifiable or readonly.
|
|
unnamed = '[No Name]', -- Text to show for unnamed buffers.
|
|
newfile = '', -- Text to show for newly created file before first write
|
|
},
|
|
},
|
|
},
|
|
lualine_x = { 'location' },
|
|
lualine_y = {},
|
|
lualine_z = {},
|
|
},
|
|
},
|
|
}
|