From c4d1bc9809592691fc185b7d718c446914b64786 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Mon, 29 Jul 2024 01:02:11 +0100 Subject: [PATCH] chore(lua): remove unused files related to themes and plugins for cleanup and organization purposes --- lua/absolute/after/colorscheme.lua | 8 -------- lua/absolute/after/jupytext.lua | 8 -------- lua/absolute/plugins/jupytext.lua | 7 ------- lua/absolute/plugins/otter.lua | 7 ------- 4 files changed, 30 deletions(-) delete mode 100644 lua/absolute/after/colorscheme.lua delete mode 100644 lua/absolute/after/jupytext.lua delete mode 100644 lua/absolute/plugins/jupytext.lua delete mode 100644 lua/absolute/plugins/otter.lua diff --git a/lua/absolute/after/colorscheme.lua b/lua/absolute/after/colorscheme.lua deleted file mode 100644 index 629893c..0000000 --- a/lua/absolute/after/colorscheme.lua +++ /dev/null @@ -1,8 +0,0 @@ -function SetTheme(color) - color = color or "rose-pine" - vim.cmd.colorscheme(color) - -- vim.api.nvim_set_hl(0, "Normal", { bg = "none" }) - -- vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" }) -end - -SetTheme("tokyonight") diff --git a/lua/absolute/after/jupytext.lua b/lua/absolute/after/jupytext.lua deleted file mode 100644 index 21da8c8..0000000 --- a/lua/absolute/after/jupytext.lua +++ /dev/null @@ -1,8 +0,0 @@ -local jupytext = require("jupytext") - -jupytext.setup({ - style = "markdown", - output_extension = "md", -- Default extension. Don't change unless you know what you are doing - force_ft = "markdown", -- Default filetype. Don't change unless you know what you are doing - custom_language_formatting = {}, -}) diff --git a/lua/absolute/plugins/jupytext.lua b/lua/absolute/plugins/jupytext.lua deleted file mode 100644 index d9a48e5..0000000 --- a/lua/absolute/plugins/jupytext.lua +++ /dev/null @@ -1,7 +0,0 @@ -return { - "GCBallesteros/jupytext.nvim", - config = function() - require("absolute.after.jupytext") - end, - lazy = false, -} diff --git a/lua/absolute/plugins/otter.lua b/lua/absolute/plugins/otter.lua deleted file mode 100644 index e5caa84..0000000 --- a/lua/absolute/plugins/otter.lua +++ /dev/null @@ -1,7 +0,0 @@ -return { - "jmbuhr/otter.nvim", - config = function() - require("absolute.after.otter") - end, - ft = { "py", "lua" } -}