diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-02-24 12:14:02 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-02-24 12:14:02 +0100 |
commit | 548153a439f7a6e43a28a8f2146ee963033a6f36 (patch) | |
tree | 6c74d3c7fca85b93cc0775a446779fb267ad01c2 | |
parent | Dotfiles: Emacs: rebind keys (diff) | |
download | nixos-config-548153a439f7a6e43a28a8f2146ee963033a6f36.tar.gz nixos-config-548153a439f7a6e43a28a8f2146ee963033a6f36.tar.bz2 nixos-config-548153a439f7a6e43a28a8f2146ee963033a6f36.zip |
Dotfiles: Helm ag
-rw-r--r-- | dotfiles/.emacs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/dotfiles/.emacs b/dotfiles/.emacs index a6a146b..980acb9 100644 --- a/dotfiles/.emacs +++ b/dotfiles/.emacs @@ -63,6 +63,8 @@ (setq warning-minimum-level :error) (setq inhibit-startup-screen t) +(savehist-mode 1) + ;; Disable toolbar, menubar and scrollbar (menu-bar-mode -1) (tool-bar-mode -1) @@ -102,8 +104,13 @@ (use-package helm :ensure t) +(use-package helm-ag + :ensure t) + (use-package projectile :ensure t + :init + (setq projectile-project-search-path '("~/src/")) :config (projectile-mode +1)) |