From 0c218da55a74916071b017bd61af85b5b4663b42 Mon Sep 17 00:00:00 2001 From: nicholai Date: Sat, 13 Dec 2025 14:49:51 -0700 Subject: [PATCH] forgot this bit --- lua/plugins/plugin.lua | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lua/plugins/plugin.lua b/lua/plugins/plugin.lua index cf63eeb..68251b0 100644 --- a/lua/plugins/plugin.lua +++ b/lua/plugins/plugin.lua @@ -6,7 +6,7 @@ return { priority = 1000, config = function() require('kanagawa').setup({ - compile = true, -- enable compiling the colorscheme + compile = true, -- enable compiling the colorscheme undercurl = true, -- enable undercurls commentStyle = { italic = true }, functionStyle = {}, @@ -34,13 +34,13 @@ return { }, -- File explorer - { - "nvim-tree/nvim-tree.lua", - dependencies = { "nvim-tree/nvim-web-devicons" }, - config = function() - require("nvim-tree").setup() - end, - }, + { + "nvim-tree/nvim-tree.lua", + dependencies = { "nvim-tree/nvim-web-devicons" }, + config = function() + require("nvim-tree").setup() + end, + }, -- Fuzzy finder { @@ -169,7 +169,7 @@ return { dependencies = { "nvim-tree/nvim-web-devicons" }, config = function() require("lualine").setup({ - options = { theme = "catppuccin" }, + options = { theme = "kanagawa" }, }) end, },