this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

updates

+10 -2
+1 -1
spacemacs
··· 471 471 configuration. 472 472 Put your configuration code here, except for variables that should be set 473 473 before packages are loaded." 474 - (setq ispell-program-name "/Users/kaushik/.nix-profile/bin/aspell") 474 + (setq ispell-program-name "/run/current-system/sw/bin/aspell") 475 475 476 476 ;; (when (configuration-layer/package-usedp 'haskell) 477 477 ;; (add-hook 'haskell-interactive-mode-hook
+9 -1
spacemacs-private/custom-config-evil/packages.el
··· 30 30 ;;; Code: 31 31 32 32 (defconst custom-config-evil-packages 33 - '(evil) 33 + '(evil 34 + rainbow-identifiers) 34 35 ) 35 36 36 37 (defun custom-config-evil/post-init-evil () 37 38 (setq evil-search-module 'evil-search) 38 39 ) 40 + 41 + (defun custom-config-evil/init-rainbow-identifiers () 42 + (use-package rainbow-identifiers 43 + :defer t)) 44 + 45 + (defun custom-config-evil/post-init-rainbow-identifiers () 46 + (add-hook 'prog-mode-hook 'rainbow-identifiers-mode)) 39 47 40 48 41 49 ;;; packages.el ends here