From 307fceea38b7352a79b0bdb87025a34b76973867 Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Thu, 19 Jun 2025 18:34:13 +0900 Subject: updates --- .../TheSiahxyz/lua/thesiahxyz/plugins/compiler.lua | 53 ---------------------- 1 file changed, 53 deletions(-) delete mode 100644 ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/compiler.lua (limited to 'ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/compiler.lua') diff --git a/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/compiler.lua b/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/compiler.lua deleted file mode 100644 index e0894dc..0000000 --- a/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/compiler.lua +++ /dev/null @@ -1,53 +0,0 @@ -return { - { -- This plugin - "Zeioth/compiler.nvim", - cmd = { "CompilerOpen", "CompilerToggleResults", "CompilerRedo" }, - dependencies = { "stevearc/overseer.nvim", "nvim-telescope/telescope.nvim" }, - opts = {}, - init = function() - local wk = require("which-key") - wk.add({ - mode = { "n", "v" }, - { "r", group = "Compiler/Refactoring" }, - }) - end, - keys = { - -- Open compiler - vim.api.nvim_set_keymap( - "n", - "ro", - "CompilerOpen", - { noremap = true, silent = true, desc = "Open compiler" } - ), - - -- Redo last selected option - vim.api.nvim_set_keymap( - "n", - "re", - "CompilerStop" -- (Optional, to dispose all tasks before redo) - .. "CompilerRedo", - { noremap = true, silent = true, desc = "Recompile" } - ), - -- Toggle compiler results - vim.api.nvim_set_keymap( - "n", - "rt", - "CompilerToggleResults", - { noremap = true, silent = true, desc = "Toggle compiler" } - ), - }, - }, - { -- The task runner we use - "stevearc/overseer.nvim", - commit = "6271cab7ccc4ca840faa93f54440ffae3a3918bd", - cmd = { "CompilerOpen", "CompilerToggleResults", "CompilerRedo" }, - opts = { - task_list = { - direction = "bottom", - min_height = 25, - max_height = 25, - default_detail = 1, - }, - }, - }, -} -- cgit v1.2.3