From 5b58207e16f54baf486ab84586ed535a80f66021 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sascha=20L=C3=BCdecke?= Date: Fri, 4 Jul 2025 12:56:48 +0200 Subject: [PATCH] Lualine shows lsp_status, fzf-lua moved up --- lua/config/lualine.lua | 2 +- lua/plugins.lua | 22 +++++++++------------- 2 files changed, 10 insertions(+), 14 deletions(-) diff --git a/lua/config/lualine.lua b/lua/config/lualine.lua index 1090410..75c1e37 100644 --- a/lua/config/lualine.lua +++ b/lua/config/lualine.lua @@ -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' } }, diff --git a/lua/plugins.lua b/lua/plugins.lua index 0f725fc..6c6210a 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -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",