From 4fe0e2df2ed189382b1dc3e537a8c4d99f7afa38 Mon Sep 17 00:00:00 2001 From: Tawfeeq Date: Mon, 14 Apr 2025 16:24:44 +0200 Subject: [PATCH] twilight --- lua/custom/plugins/heatherfield.lua | 8 ++++++++ lua/custom/plugins/twilight.lua | 9 +++++++++ lua/custom/plugins/zen-mode.lua | 9 +++++++++ 3 files changed, 26 insertions(+) create mode 100644 lua/custom/plugins/heatherfield.lua create mode 100644 lua/custom/plugins/twilight.lua create mode 100644 lua/custom/plugins/zen-mode.lua diff --git a/lua/custom/plugins/heatherfield.lua b/lua/custom/plugins/heatherfield.lua new file mode 100644 index 00000000..eb6eda95 --- /dev/null +++ b/lua/custom/plugins/heatherfield.lua @@ -0,0 +1,8 @@ +return { + 'egerhether/heatherfield.nvim', + -- config = function() + -- require('heatherfield').setup( + -- custom options + -- ) -- calling setup is optional + -- end, + } diff --git a/lua/custom/plugins/twilight.lua b/lua/custom/plugins/twilight.lua new file mode 100644 index 00000000..e2493043 --- /dev/null +++ b/lua/custom/plugins/twilight.lua @@ -0,0 +1,9 @@ +-- Lua +return { + "folke/twilight.nvim", + opts = { + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below + } +} diff --git a/lua/custom/plugins/zen-mode.lua b/lua/custom/plugins/zen-mode.lua new file mode 100644 index 00000000..f1fce96b --- /dev/null +++ b/lua/custom/plugins/zen-mode.lua @@ -0,0 +1,9 @@ +-- Lua +return { + "folke/zen-mode.nvim", + opts = { + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below + } +}