diff --git a/config/nvim/lua/plugins/theme.lua b/config/nvim/lua/plugins/theme.lua index 8464386..dad2d30 100644 --- a/config/nvim/lua/plugins/theme.lua +++ b/config/nvim/lua/plugins/theme.lua @@ -1,8 +1,4 @@ -local uv = vim.uv -local file_path = vim.fn.expand("~/.config/omarchy/current/theme/neovim.lua") - --- Default configuration -local default = { +return { { "LazyVim/LazyVim", opts = { @@ -10,13 +6,3 @@ local default = { }, }, } - --- Try to load custom theme, fallback to default -if uv.fs_stat(file_path) then - local success, result = pcall(dofile, file_path) - if success and type(result) == "table" then - return result - end -end - -return default