Compare commits

...

3 commits

Author SHA1 Message Date
Emmet cad0239cc9 Compatibility for stable nixpkgs installs 2024-04-27 15:40:33 -05:00
Emmet 1e36fdb267 Disables home-manager news 2024-04-27 15:34:36 -05:00
Emmet cd7b11d3b7 Finally figured out how to undisable commands 2024-04-27 15:29:25 -05:00
6 changed files with 9 additions and 1 deletions

View file

@ -89,4 +89,6 @@
# It is ok to leave this unchanged for compatibility purposes # It is ok to leave this unchanged for compatibility purposes
system.stateVersion = "22.11"; system.stateVersion = "22.11";
news.display = "silent";
} }

View file

@ -179,4 +179,6 @@
BROWSER = userSettings.browser; BROWSER = userSettings.browser;
}; };
news.display = "silent";
} }

View file

@ -63,4 +63,6 @@
EDITOR = userSettings.editor; EDITOR = userSettings.editor;
}; };
news.display = "silent";
} }

View file

@ -1447,6 +1447,7 @@ https://github.com/magit/magit/issues/460 (@cpitclaudel)."
(map! :leader (map! :leader
:desc "Projectile grep" :desc "Projectile grep"
"/" #'projectile-grep) "/" #'projectile-grep)
(put 'projectile-grep 'disabled nil)
;;;-- projectile wrapper commands ;;;-- ;;;-- projectile wrapper commands ;;;--
(require 'sudo-edit) (require 'sudo-edit)

View file

@ -1680,6 +1680,7 @@ I don't have this active right now since it's kinda weird with pgtk...
(map! :leader (map! :leader
:desc "Projectile grep" :desc "Projectile grep"
"/" #'projectile-grep) "/" #'projectile-grep)
(put 'projectile-grep 'disabled nil)
#+END_SRC #+END_SRC
** sudo-edit ** sudo-edit

View file

@ -16,7 +16,7 @@ in
{ {
programs.zsh = { programs.zsh = {
enable = true; enable = true;
autosuggestion.enable = true; enableAutosuggestions = true;
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
enableCompletion = true; enableCompletion = true;
shellAliases = myAliases; shellAliases = myAliases;