about summary refs log tree commit diff
path: root/dotfiles
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2024-02-24 12:14:02 +0100
committerBaitinq <manuelpalenzuelamerino@gmail.com>2024-02-24 12:14:02 +0100
commit548153a439f7a6e43a28a8f2146ee963033a6f36 (patch)
tree6c74d3c7fca85b93cc0775a446779fb267ad01c2 /dotfiles
parentDotfiles: Emacs: rebind keys (diff)
downloadnixos-config-548153a439f7a6e43a28a8f2146ee963033a6f36.tar.gz
nixos-config-548153a439f7a6e43a28a8f2146ee963033a6f36.tar.bz2
nixos-config-548153a439f7a6e43a28a8f2146ee963033a6f36.zip
Dotfiles: Helm ag
Diffstat (limited to '')
-rw-r--r--dotfiles/.emacs7
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))