mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 19:57:19 +00:00
Enable magit and meow.
This commit is contained in:
parent
ea40736d6b
commit
ca684d85f4
1 changed files with 7 additions and 1 deletions
|
@ -362,8 +362,12 @@ in
|
||||||
command = [ "lsp-ui-mode" ];
|
command = [ "lsp-ui-mode" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
magit = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
meow = {
|
meow = {
|
||||||
enable = false;
|
enable = true;
|
||||||
init = ''
|
init = ''
|
||||||
; -*-emacs-lisp-*-
|
; -*-emacs-lisp-*-
|
||||||
(defun meow-setup ()
|
(defun meow-setup ()
|
||||||
|
@ -447,7 +451,9 @@ in
|
||||||
'("z" . meow-pop-selection)
|
'("z" . meow-pop-selection)
|
||||||
'("'" . repeat)
|
'("'" . repeat)
|
||||||
'("<escape>" . ignore)))
|
'("<escape>" . ignore)))
|
||||||
|
(require 'meow)
|
||||||
(meow-setup)
|
(meow-setup)
|
||||||
|
(meow-global-mode 1)
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue