Add adb udev rules, groups, edit flymake config
This commit is contained in:
@@ -68,6 +68,14 @@
|
||||
default = "SearX";
|
||||
order = ["SearX" "google"];
|
||||
engines = {
|
||||
"MELPA" = {
|
||||
urls = [
|
||||
{
|
||||
template = "https://melpa.org/#/?q={searchTerms}";
|
||||
}
|
||||
];
|
||||
definedAliases = ["@m"];
|
||||
};
|
||||
"Nix Packages" = {
|
||||
urls = [
|
||||
{
|
||||
|
@@ -14,6 +14,7 @@
|
||||
;; automatically create missing directories
|
||||
;; source: https://emacsredux.com/blog/2022/06/12/auto-create-missing-directories/
|
||||
(defun er-auto-create-missing-dirs ()
|
||||
"Create missing parent directories automatically when opening a file."
|
||||
(let ((target-dir (file-name-directory buffer-file-name)))
|
||||
(unless (file-exists-p target-dir)
|
||||
(make-directory target-dir t))))
|
||||
@@ -528,11 +529,19 @@
|
||||
(use-package flyspell
|
||||
:defer t
|
||||
:hook
|
||||
(markdown-mode . flyspell-mode)
|
||||
(org-mode . flyspell-mode)
|
||||
:diminish flyspell-mode)
|
||||
|
||||
;; enlighten flymake to the load path
|
||||
(setq elisp-flymake-byte-compile-load-path load-path)
|
||||
;; flymake config
|
||||
(use-package flymake
|
||||
:straight nil
|
||||
:defer t
|
||||
:init
|
||||
(setq elisp-flymake-byte-compile-load-path load-path)
|
||||
:bind (:map global-map
|
||||
("M-n" . flymake-goto-next-error)
|
||||
("M-p" . flymake-goto-prev-error)))
|
||||
|
||||
;; windows printer
|
||||
(setq ps-printer-name t)
|
||||
|
Reference in New Issue
Block a user