From 97bc3afff45b93e7d9bffa1e7b54f39abcb123ec Mon Sep 17 00:00:00 2001 From: t0xa Date: Thu, 2 Oct 2025 11:13:59 +0300 Subject: [PATCH] Lualine: Fix theme --- lua/custom/lualine.lua | 2 +- lua/custom/plugins/lualine.lua | 20 +------------------- 2 files changed, 2 insertions(+), 20 deletions(-) diff --git a/lua/custom/lualine.lua b/lua/custom/lualine.lua index a160aaa..6d8b766 100644 --- a/lua/custom/lualine.lua +++ b/lua/custom/lualine.lua @@ -1,6 +1,6 @@ require("lualine").setup({ options = { - theme = "catpuccin-mocha", + theme = "catppuccin-mocha", }, sections = { lualine_c = { diff --git a/lua/custom/plugins/lualine.lua b/lua/custom/plugins/lualine.lua index e17801b..03460e3 100644 --- a/lua/custom/plugins/lualine.lua +++ b/lua/custom/plugins/lualine.lua @@ -2,24 +2,6 @@ return { "nvim-lualine/lualine.nvim", dependencies = { "nvim-tree/nvim-web-devicons" }, config = function() - local lualine = require("lualine") - -- configure lualine with modified theme - lualine.setup({ - options = { - -- theme = "tokyonight", - -- theme = "catppuccin-mocha", - theme = "gruvbox-material", - }, - sections = { - lualine_c = { - { - "filename", - file_status = true, - path = 2, - }, - }, - }, - }) + require "custom/lualine" end, } -