From a4b0d39183e329bd86aebff8bd4d4dccdc58ac65 Mon Sep 17 00:00:00 2001 From: Micah Effiong Date: Thu, 8 Jun 2023 02:03:08 +0100 Subject: [PATCH] resolving import and circular dependency --- init.lua | 4 ++-- lua/custom/{init.lua => settings.lua} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename lua/custom/{init.lua => settings.lua} (100%) diff --git a/init.lua b/init.lua index 52714bd7..af0d3154 100644 --- a/init.lua +++ b/init.lua @@ -152,7 +152,7 @@ require('lazy').setup({ -- See `:help lualine.txt` opts = { options = { - icons_enabled = false, + icons_enabled = true, theme = 'onedark', component_separators = '|', section_separators = '', @@ -475,7 +475,7 @@ cmp.setup { } -- custom settings -pcall(require('custom')) +pcall(require('custom.settings')) -- The line beneath this is called `modeline`. See `:help modeline` -- vim: ts=2 sts=2 sw=2 et diff --git a/lua/custom/init.lua b/lua/custom/settings.lua similarity index 100% rename from lua/custom/init.lua rename to lua/custom/settings.lua