Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit 3927bd2

Browse files
community: overseer task manager for makefile and other tasks
- import overseer plugin via Astrocommunity leader x tasks mappings - <leader>x menu section for tasks - <leader>xo menu item for `:OverseerRun` command
1 parent 2ca543e commit 3927bd2

3 files changed

Lines changed: 11 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Unreleased
2+
## Added
3+
- community: overseer task manager for makefile and other tasks, leader x tasks mappings
24

35
# 2023-11-13
46
## Added

mappings.lua

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ return {
6161
["<leader>gn"] = { name = " Neogit" }, -- Neogit menu
6262
-- quick save
6363
-- ["<C-s>"] = { ":w!<cr>", desc = "Save File" }, -- change description but the same command
64+
65+
-- Code Runner
66+
["<leader>x"] = { name = "☑ Tasks" },
67+
["<leader>xo"] = { "<cmd>OverseerRun<cr>", desc = "⚙ Overseer Run" },
6468
},
6569
t = {
6670
-- setting a mapping to false will disable it

plugins/community.lua

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ return {
1616
-- { dir = "~/projects/community/neovim/astrocommunity" },
1717
-- ----------------------------------------------
1818

19+
-- ----------------------------------------------
20+
-- code runner
21+
-- Overseer task runner & job management
22+
{ import = "astrocommunity.code-runner.overseer-nvim" },
23+
1924
-- ----------------------------------------------
2025
-- color
2126
-- color picker and highlighter

0 commit comments

Comments
 (0)