General cleanup

This commit is contained in:
Henrik Lissner 2016-06-05 00:11:46 -04:00
parent ab8128cf93
commit 67fb2626f7
6 changed files with 12 additions and 10 deletions

View file

@ -6,6 +6,7 @@
(setq flycheck-indication-mode 'right-fringe
;; Removed checks on idle/change for snappiness
flycheck-check-syntax-automatically '(save mode-enabled)
flycheck-highlighting-mode 'symbols
flycheck-disabled-checkers '(emacs-lisp emacs-lisp-checkdoc make))
:config

View file

@ -65,7 +65,7 @@
(concat
(propertize
(concat
(make-string (min 3 (truncate (/ height 5))) ?\n)
(make-string (min 5 (truncate (/ height 5))) ?\n)
lead "================= =============== =============== ======== ========\n"
lead "\\\\ . . . . . . .\\\\ //. . . . . . .\\\\ //. . . . . . .\\\\ \\\\. . .\\\\// . . //\n"
lead "||. . ._____. . .|| ||. . ._____. . .|| ||. . ._____. . .|| || . . .\\/ . . .||\n"

View file

@ -10,8 +10,8 @@
defuns/defuns-workgroups.el.")
(defvar doom-wg-names '()
"A list of fixed names for workgroups. If a name is set, workgroup names aren't
automatically renamed to the project name.")
"A list of fixed names for workgroups. If a name is set, workgroup names
aren't automatically renamed to the project name.")
(use-package workgroups2
:when window-system

View file

@ -49,8 +49,7 @@
(use-package auto-yasnippet
:commands (aya-create aya-expand aya-open-line aya-persist-snippet)
:config
(setq aya-persist-snippets-dir (concat doom-private-dir "auto-snippets/")))
:config (setq aya-persist-snippets-dir (concat doom-private-dir "auto-snippets/")))
(provide 'core-yasnippet)
;;; core-yasnippet.el ends here

View file

@ -114,7 +114,8 @@ the buffer if it is being displayed in another window."
(unless (doom/real-buffer-p (current-buffer))
(doom/previous-real-buffer))
(when (get-buffer-window-list doom-buffer nil t)
(doom|update-scratch-buffer new-dir))))))
(doom|update-scratch-buffer new-dir)))))
t)
;;;###autoload
(defun doom/kill-unreal-buffers ()

View file

@ -2,8 +2,7 @@
;;;###autoload (autoload 'doom:helm-recentf "defuns-helm" nil t)
(evil-define-command doom:helm-recentf (&optional bang)
"Ex-mode interface for `helm-recentf' and `helm-projectile-recentf'. If
`bang', then `search' is interpreted as regexp."
"Ex-mode interface for `helm-recentf' and `helm-projectile-recentf'."
:repeat nil
(interactive "<!>")
(if bang (helm-recentf) (helm-projectile-recentf)))
@ -57,12 +56,14 @@ DIR specifies the default-directory from which ag is run."
;;;###autoload
(defun doom/helm-find-in-emacsd ()
(interactive)
(in! doom-emacs-dir (helm-projectile-find-file)))
(let ((default-directory doom-emacs-dir))
(helm-projectile-find-file)))
;;;###autoload
(defun doom/helm-find-in-dotfiles ()
(interactive)
(in! (expand-file-name ".dotfiles" "~") (helm-projectile-find-file)))
(let ((default-directory (expand-file-name ".dotfiles" "~")))
(helm-projectile-find-file)))
;;;###autoload
(defun doom/helm-buffers-dwim (&optional all-p)