This commit is contained in:
Sakooooo 2023-12-25 22:32:48 +04:00
parent f008266e18
commit 97e476c5f6
Signed by: sako
GPG key ID: FE52FD65B76E4751
2 changed files with 211 additions and 111 deletions

View file

@ -419,62 +419,112 @@ Should make startup faster, taken from doom-emacs
#+end_src
** General Leader Key
#+begin_src emacs-lisp
(use-package general
:demand t
:config
(general-create-definer sakomacs/leader-keys
:keymaps `(normal insert visual emacs)
:prefix "SPC"
:global-prefix "C-SPC")
(defvar sakomacs/leader-keys
;; code
"c" `(:ignore c :which-key "code")
"cc" `(compile :which-key "compile")
"cC" `(recompile :which-key "compile")
"cX" `(lsp-treeemacs-errors-list :which-ley "list errors")
;; toggles
"t" `(:ignore t :which-key "toggles")
"tt" `(counsel-load-theme :which-key "choose theme")
"ts" `(hydra-text-scale/body :which-key "scale text")
;; search
"s" `(:ignore s :which-key "search")
"sb" `(swiper :which-key "search buffer")
;; insert
"i" `(:ignore i :which-key "insert")
"ie" `(emoji-search :which-key "Emoji")
;; project
"p" `(:ignore p :which-key "projects")
"pp" `(projectile-switch-project :which-key "open project")
"pk" `(projectile-kill-buffers :which-key "close project")
"pa" `(projectile-add-known-project :which-key "add project")
"pR" `(projectile-run-project :which-key "run project")
"pt" `(magit-todos-list :which-key "list project todos")
"ps" `(projectile-save-project-buffers :which-key "save project")
"po" `(projectile-find-other-file :which-key "find other file")
"pg" `(projectile-configure-project :which-key "configure project")
"pc" `(projectile-compile-project :which-key "compile project")
;; open
"o" `(:ignore o :which-key "open")
"op" `(treemacs :which-key "treemacs")
"oP" `(treemacs-find-file :which-key "treemacs find file")
"oe" `(eshell :which-key "eshell")
"or" `(elfeed :which-key "rss")
;; notes
"n" `(:ignore o :which-key "notes")
"na" `(org-agenda :which-key "agenda")
;; quit
"q" `(:ignore q :which-key "quit")
"qq" `(delete-frame :which-key "close emacs")
"qK" `(kill-emacs :which-key "quit emacs")
;; git
"g" `(:ignore g :which-key "git")
"gs" `(magit-status :which-key "status")
"gc" `(:ignore gc :which-key "create")
"gcr" `(magit-init :which-key "init repo")
"gcR" `(magit-clone :which-key "clone repo")
"gcc" `(magit-commit-create :which-key "commit")
"gci" `(forge-create-issue :which-key "issue")
"gcp" `(forge-create-pullreq :which-key "pull request")))
(use-package general
:demand t
:config
(general-create-definer sakomacs/leader-keys
:keymaps `(normal insert visual emacs)
:prefix "SPC"
:global-prefix "C-SPC")
;; (sakomacs/leader-keys
;; ;; code
;; "c" `(:ignore c :which-key "code")
;; "cc" `(compile :which-key "compile")
;; "cC" `(recompile :which-key "compile")
;; "cX" `(lsp-treeemacs-errors-list :which-ley "list errors")
;; ;; toggles
;; "t" `(:ignore t :which-key "toggles")
;; "tt" `(counsel-load-theme :which-key "choose theme")
;; "ts" `(hydra-text-scale/body :which-key "scale text")
;; ;; search
;; "s" `(:ignore s :which-key "search")
;; "sb" `(swiper :which-key "search buffer")
;; ;; insert
;; "i" `(:ignore i :which-key "insert")
;; "ie" `(emoji-search :which-key "Emoji")
;; ;; project
;; "p" `(:ignore p :which-key "projects")
;; "pp" `(projectile-switch-project :which-key "open project")
;; "pk" `(projectile-kill-buffers :which-key "close project")
;; "pa" `(projectile-add-known-project :which-key "add project")
;; "pR" `(projectile-run-project :which-key "run project")
;; "pt" `(magit-todos-list :which-key "list project todos")
;; "ps" `(projectile-save-project-buffers :which-key "save project")
;; "po" `(projectile-find-other-file :which-key "find other file")
;; "pg" `(projectile-configure-project :which-key "configure project")
;; "pc" `(projectile-compile-project :which-key "compile project")
;; ;; open
;; "o" `(:ignore o :which-key "open")
;; "op" `(treemacs :which-key "treemacs")
;; "oP" `(treemacs-find-file :which-key "treemacs find file")
;; "oe" `(eshell :which-key "eshell")
;; "or" `(elfeed :which-key "rss")
;; ;; notes
;; "n" `(:ignore o :which-key "notes")
;; "na" `(org-agenda :which-key "agenda")
;; ;; quit
;; "q" `(:ignore q :which-key "quit")
;; "qq" `(delete-frame :which-key "close emacs")
;; "qK" `(kill-emacs :which-key "quit emacs")
;; ;; git
;; "g" `(:ignore g :which-key "git")
;; "gs" `(magit-status :which-key "status")
;; "gc" `(:ignore gc :which-key "create")
;; "gcr" `(magit-init :which-key "init repo")
;; "gcR" `(magit-clone :which-key "clone repo")
;; "gcc" `(magit-commit-create :which-key "commit")
;; "gci" `(forge-create-issue :which-key "issue")
;; "gcp" `(forge-create-pullreq :which-key "pull request"))
)
(sakomacs/leader-keys
;; code
"c" `(:ignore c :which-key "code")
"cc" `(compile :which-key "compile")
"cC" `(recompile :which-key "compile")
"cX" `(lsp-treeemacs-errors-list :which-ley "list errors")
;; toggles
"t" `(:ignore t :which-key "toggles")
"tt" `(counsel-load-theme :which-key "choose theme")
"ts" `(hydra-text-scale/body :which-key "scale text")
;; search
"s" `(:ignore s :which-key "search")
"sb" `(swiper :which-key "search buffer")
;; insert
"i" `(:ignore i :which-key "insert")
"ie" `(emoji-search :which-key "Emoji")
;; project
"p" `(:ignore p :which-key "projects")
"pp" `(projectile-switch-project :which-key "open project")
"pk" `(projectile-kill-buffers :which-key "close project")
"pa" `(projectile-add-known-project :which-key "add project")
"pR" `(projectile-run-project :which-key "run project")
"pt" `(magit-todos-list :which-key "list project todos")
"ps" `(projectile-save-project-buffers :which-key "save project")
"po" `(projectile-find-other-file :which-key "find other file")
"pg" `(projectile-configure-project :which-key "configure project")
"pc" `(projectile-compile-project :which-key "compile project")
;; open
"o" `(:ignore o :which-key "open")
"op" `(treemacs :which-key "treemacs")
"oP" `(treemacs-find-file :which-key "treemacs find file")
"oe" `(eshell :which-key "eshell")
"or" `(elfeed :which-key "rss")
;; notes
"n" `(:ignore o :which-key "notes")
"na" `(org-agenda :which-key "agenda")
;; quit
"q" `(:ignore q :which-key "quit")
"qq" `(delete-frame :which-key "close emacs")
"qK" `(kill-emacs :which-key "quit emacs")
;; git
"g" `(:ignore g :which-key "git")
"gs" `(magit-status :which-key "status")
"gc" `(:ignore gc :which-key "create")
"gcr" `(magit-init :which-key "init repo")
"gcR" `(magit-clone :which-key "clone repo")
"gcc" `(magit-commit-create :which-key "commit")
"gci" `(forge-create-issue :which-key "issue")
"gcp" `(forge-create-pullreq :which-key "pull request"))
#+end_src
** Dashboard
#+begin_src emacs-lisp

View file

@ -347,61 +347,111 @@ kept-old-versions 5)
:config (delete-selection-mode +1))
(use-package general
:demand t
:config
(general-create-definer sakomacs/leader-keys
:keymaps `(normal insert visual emacs)
:prefix "SPC"
:global-prefix "C-SPC")
(defvar sakomacs/leader-keys
;; code
"c" `(:ignore c :which-key "code")
"cc" `(compile :which-key "compile")
"cC" `(recompile :which-key "compile")
"cX" `(lsp-treeemacs-errors-list :which-ley "list errors")
;; toggles
"t" `(:ignore t :which-key "toggles")
"tt" `(counsel-load-theme :which-key "choose theme")
"ts" `(hydra-text-scale/body :which-key "scale text")
;; search
"s" `(:ignore s :which-key "search")
"sb" `(swiper :which-key "search buffer")
;; insert
"i" `(:ignore i :which-key "insert")
"ie" `(emoji-search :which-key "Emoji")
;; project
"p" `(:ignore p :which-key "projects")
"pp" `(projectile-switch-project :which-key "open project")
"pk" `(projectile-kill-buffers :which-key "close project")
"pa" `(projectile-add-known-project :which-key "add project")
"pR" `(projectile-run-project :which-key "run project")
"pt" `(magit-todos-list :which-key "list project todos")
"ps" `(projectile-save-project-buffers :which-key "save project")
"po" `(projectile-find-other-file :which-key "find other file")
"pg" `(projectile-configure-project :which-key "configure project")
"pc" `(projectile-compile-project :which-key "compile project")
;; open
"o" `(:ignore o :which-key "open")
"op" `(treemacs :which-key "treemacs")
"oP" `(treemacs-find-file :which-key "treemacs find file")
"oe" `(eshell :which-key "eshell")
"or" `(elfeed :which-key "rss")
;; notes
"n" `(:ignore o :which-key "notes")
"na" `(org-agenda :which-key "agenda")
;; quit
"q" `(:ignore q :which-key "quit")
"qq" `(delete-frame :which-key "close emacs")
"qK" `(kill-emacs :which-key "quit emacs")
;; git
"g" `(:ignore g :which-key "git")
"gs" `(magit-status :which-key "status")
"gc" `(:ignore gc :which-key "create")
"gcr" `(magit-init :which-key "init repo")
"gcR" `(magit-clone :which-key "clone repo")
"gcc" `(magit-commit-create :which-key "commit")
"gci" `(forge-create-issue :which-key "issue")
"gcp" `(forge-create-pullreq :which-key "pull request")))
:demand t
:config
(general-create-definer sakomacs/leader-keys
:keymaps `(normal insert visual emacs)
:prefix "SPC"
:global-prefix "C-SPC")
;; (sakomacs/leader-keys
;; ;; code
;; "c" `(:ignore c :which-key "code")
;; "cc" `(compile :which-key "compile")
;; "cC" `(recompile :which-key "compile")
;; "cX" `(lsp-treeemacs-errors-list :which-ley "list errors")
;; ;; toggles
;; "t" `(:ignore t :which-key "toggles")
;; "tt" `(counsel-load-theme :which-key "choose theme")
;; "ts" `(hydra-text-scale/body :which-key "scale text")
;; ;; search
;; "s" `(:ignore s :which-key "search")
;; "sb" `(swiper :which-key "search buffer")
;; ;; insert
;; "i" `(:ignore i :which-key "insert")
;; "ie" `(emoji-search :which-key "Emoji")
;; ;; project
;; "p" `(:ignore p :which-key "projects")
;; "pp" `(projectile-switch-project :which-key "open project")
;; "pk" `(projectile-kill-buffers :which-key "close project")
;; "pa" `(projectile-add-known-project :which-key "add project")
;; "pR" `(projectile-run-project :which-key "run project")
;; "pt" `(magit-todos-list :which-key "list project todos")
;; "ps" `(projectile-save-project-buffers :which-key "save project")
;; "po" `(projectile-find-other-file :which-key "find other file")
;; "pg" `(projectile-configure-project :which-key "configure project")
;; "pc" `(projectile-compile-project :which-key "compile project")
;; ;; open
;; "o" `(:ignore o :which-key "open")
;; "op" `(treemacs :which-key "treemacs")
;; "oP" `(treemacs-find-file :which-key "treemacs find file")
;; "oe" `(eshell :which-key "eshell")
;; "or" `(elfeed :which-key "rss")
;; ;; notes
;; "n" `(:ignore o :which-key "notes")
;; "na" `(org-agenda :which-key "agenda")
;; ;; quit
;; "q" `(:ignore q :which-key "quit")
;; "qq" `(delete-frame :which-key "close emacs")
;; "qK" `(kill-emacs :which-key "quit emacs")
;; ;; git
;; "g" `(:ignore g :which-key "git")
;; "gs" `(magit-status :which-key "status")
;; "gc" `(:ignore gc :which-key "create")
;; "gcr" `(magit-init :which-key "init repo")
;; "gcR" `(magit-clone :which-key "clone repo")
;; "gcc" `(magit-commit-create :which-key "commit")
;; "gci" `(forge-create-issue :which-key "issue")
;; "gcp" `(forge-create-pullreq :which-key "pull request"))
)
(sakomacs/leader-keys
;; code
"c" `(:ignore c :which-key "code")
"cc" `(compile :which-key "compile")
"cC" `(recompile :which-key "compile")
"cX" `(lsp-treeemacs-errors-list :which-ley "list errors")
;; toggles
"t" `(:ignore t :which-key "toggles")
"tt" `(counsel-load-theme :which-key "choose theme")
"ts" `(hydra-text-scale/body :which-key "scale text")
;; search
"s" `(:ignore s :which-key "search")
"sb" `(swiper :which-key "search buffer")
;; insert
"i" `(:ignore i :which-key "insert")
"ie" `(emoji-search :which-key "Emoji")
;; project
"p" `(:ignore p :which-key "projects")
"pp" `(projectile-switch-project :which-key "open project")
"pk" `(projectile-kill-buffers :which-key "close project")
"pa" `(projectile-add-known-project :which-key "add project")
"pR" `(projectile-run-project :which-key "run project")
"pt" `(magit-todos-list :which-key "list project todos")
"ps" `(projectile-save-project-buffers :which-key "save project")
"po" `(projectile-find-other-file :which-key "find other file")
"pg" `(projectile-configure-project :which-key "configure project")
"pc" `(projectile-compile-project :which-key "compile project")
;; open
"o" `(:ignore o :which-key "open")
"op" `(treemacs :which-key "treemacs")
"oP" `(treemacs-find-file :which-key "treemacs find file")
"oe" `(eshell :which-key "eshell")
"or" `(elfeed :which-key "rss")
;; notes
"n" `(:ignore o :which-key "notes")
"na" `(org-agenda :which-key "agenda")
;; quit
"q" `(:ignore q :which-key "quit")
"qq" `(delete-frame :which-key "close emacs")
"qK" `(kill-emacs :which-key "quit emacs")
;; git
"g" `(:ignore g :which-key "git")
"gs" `(magit-status :which-key "status")
"gc" `(:ignore gc :which-key "create")
"gcr" `(magit-init :which-key "init repo")
"gcR" `(magit-clone :which-key "clone repo")
"gcc" `(magit-commit-create :which-key "commit")
"gci" `(forge-create-issue :which-key "issue")
"gcp" `(forge-create-pullreq :which-key "pull request"))
(use-package dashboard
:init