diff options
author | jeschli <jeschli@gmail.com> | 2019-09-11 20:57:18 +0000 |
---|---|---|
committer | jeschli <jeschli@gmail.com> | 2019-09-11 21:10:06 +0000 |
commit | f6670ed74f309ed5508bf560bb82947ab09b0689 (patch) | |
tree | e846571887a90d4b9d8d620827cd79d2ae6ac3aa /jeschli/2configs | |
parent | c734bb4db0dab03c88d411aad33723cd6e755d29 (diff) |
j emacs: configure magit
Diffstat (limited to 'jeschli/2configs')
-rw-r--r-- | jeschli/2configs/emacs.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/jeschli/2configs/emacs.nix b/jeschli/2configs/emacs.nix index 958f2d5cb..fc786c6e6 100644 --- a/jeschli/2configs/emacs.nix +++ b/jeschli/2configs/emacs.nix @@ -42,6 +42,10 @@ let (ido-mode t) ''; + magit = '' + (global-set-key (kbd "C-x g") 'magit-status) ; "Most Magit commands are commonly invoked from the status buffer" + ''; + windowCosmetics = '' (menu-bar-mode -1) (tool-bar-mode -1) ; Disable the button bar atop screen @@ -83,6 +87,7 @@ let ${evilMode} ${goMode} ${ido} + ${magit} ${packageRepos} ${orgMode} ${recentFiles} |