diff --git a/config/neovim/after/plugin/lualine.lua b/config/neovim/after/plugin/lualine.lua
new file mode 100644
index 00000000..6fb446b7
--- /dev/null
+++ b/config/neovim/after/plugin/lualine.lua
@@ -0,0 +1,15 @@
+require("lualine").setup {
+  options = {
+    component_separators = { left = "", right = "" },
+    extensions = { "fzf", "quickfix" },
+    icons_enabled = false,
+    section_separators = { left = "", right = "" },
+    theme = "catppuccin",
+  },
+
+  sections = {
+    lualine_c = {
+      "lsp_progress",
+    },
+  },
+}