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" } -}