Lualine shows lsp_status, fzf-lua moved up

This commit is contained in:
2025-07-04 12:56:48 +02:00
parent 270222bb57
commit 5b58207e16
2 changed files with 10 additions and 14 deletions

View File

@@ -49,7 +49,7 @@
lualine_a = { { 'filename', path = 1, shorting_target = 50 } },
lualine_b = { 'branch', 'diff', 'diagnostics' },
lualine_c = {},
lualine_x = { 'encoding', 'fileformat', 'filetype' },
lualine_x = { 'encoding', 'fileformat', 'filetype', 'lsp_status' },
lualine_y = { 'filesize' },
lualine_z = { 'progress', 'location' }
},

View File

@@ -125,6 +125,15 @@ require("lazy").setup({
},
},
-- fzf-lua
{
"ibhagwan/fzf-lua",
-- optional for icon support
dependencies = { "nvim-tree/nvim-web-devicons" },
config = true,
},
-- neogit setup
{
"NeogitOrg/neogit",
@@ -215,19 +224,6 @@ require("lazy").setup({
-- comfortable table editing, esp. used in orgmode
{ 'dhruvasagar/vim-table-mode' },
-- fzf-lua
{
"ibhagwan/fzf-lua",
-- optional for icon support
dependencies = { "nvim-tree/nvim-web-devicons" },
config = function()
-- calling `setup` is optional for customization
local fzf = require("fzf-lua")
fzf.setup({ "default-title" })
fzf.register_ui_select()
end
},
-- which-key
{
"folke/which-key.nvim",