mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-13 14:42:16 +02:00
lets see
This commit is contained in:
parent
3cc36dead0
commit
105414d070
2 changed files with 86 additions and 12 deletions
|
@ -69,4 +69,59 @@ return {
|
|||
require('bufferline').setup {}
|
||||
end,
|
||||
},
|
||||
{
|
||||
'nvim-lualine/lualine.nvim',
|
||||
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
||||
config = function()
|
||||
require('lualine').setup {
|
||||
options = {
|
||||
icons_enabled = true,
|
||||
theme = 'auto',
|
||||
component_separators = { left = '', right = '' },
|
||||
section_separators = { left = '', right = '' },
|
||||
disabled_filetypes = {
|
||||
statusline = {},
|
||||
winbar = {},
|
||||
},
|
||||
ignore_focus = {},
|
||||
always_divide_middle = true,
|
||||
globalstatus = false,
|
||||
refresh = {
|
||||
statusline = 1000,
|
||||
tabline = 1000,
|
||||
winbar = 1000,
|
||||
},
|
||||
},
|
||||
sections = {
|
||||
lualine_a = { 'mode' },
|
||||
lualine_b = { 'branch', 'diff', 'diagnostics' },
|
||||
lualine_c = { 'filename' },
|
||||
--lualine_x = { 'filetype', 'encoding' }, -- "fileformat",
|
||||
--lualine_y = { "progress" },
|
||||
lualine_z = { 'location' },
|
||||
lualine_x = {
|
||||
'copilot',
|
||||
'encoding',
|
||||
'fileformat',
|
||||
'filetype',
|
||||
},
|
||||
|
||||
--inactive_sections = {
|
||||
-- lualine_a = {},
|
||||
-- lualine_b = {},
|
||||
-- lualine_c = { "filename" },
|
||||
-- lualine_x = { "location" },
|
||||
-- lualine_y = {},
|
||||
--a lualine_z = {},
|
||||
--},
|
||||
tabline = {},
|
||||
winbar = {},
|
||||
inactive_winbar = {},
|
||||
extensions = {},
|
||||
},
|
||||
}
|
||||
end,
|
||||
},
|
||||
{ 'ofseed/copilot-status.nvim' },
|
||||
--{ 'AndreM222/copilot-lualine' },
|
||||
} -- end of return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue