Skip to content

Commit

Permalink
feat(project): initial support for project-cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Nov 21, 2023
1 parent 3cd3a7d commit 92d4b89
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions modules/me-project.el
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,19 @@
(unless (eq ibuffer-sorting-mode 'project-file-relative)
(ibuffer-do-sort-by-project-file-relative))))

(use-package project-cmake
:straight (:host github :repo "juanjosegarciaripoll/project-cmake")
:init
(+map! :keymaps '(c-mode-map c++-mode-map c-ts-mode-map c++-ts-mode-map)
:infix "p"
"m" '(nil :wk "project-cmake")
"mb" #'project-cmake-build
"mg" #'project-cmake-configure
"mt" #'project-cmake-test
"mI" #'project-cmake-install
"ms" #'project-cmake-scan-kits
"mS" #'project-cmake-shell))


(provide 'me-project)

Expand Down

0 comments on commit 92d4b89

Please sign in to comment.