From 454be3285156a5dfac4c8f6cfdb3be465bca90a8 Mon Sep 17 00:00:00 2001 From: 10sr <8.slashes@gmail.com> Date: Wed, 8 May 2019 18:04:21 +0900 Subject: [PATCH] IndianRed4 --- emacs.el | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/emacs.el b/emacs.el index 87cf1e5..6e2b47b 100644 --- a/emacs.el +++ b/emacs.el @@ -774,7 +774,7 @@ found, otherwise returns nil." (face-spec-set 'hl-line '((((min-colors 256) (background dark)) - (:background "SlateBlue4")) + (:background "IndianRed4")) (((min-colors 256) (background light)) ;; TODO: What is should be? @@ -859,25 +859,25 @@ found, otherwise returns nil." ;; Use gfind if available? "find")) (findcmd (concat "set -eu; set -o pipefail; " - "echo .; " - "echo ..; " - "command " find " -L . " - "-mindepth 1 " - "\\( -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' \\) -prune " - "-o -print " - "2> /dev/null " - "| " - "cut -b3-")) - (fdcmd (concat "set -eu; set -o pipefail; " - "echo .; " - "echo ..; " - "command fd " - "--follow --hidden --no-ignore " - "--color always " - "2>/dev/null"))) - (if (executable-find "fd") - (setenv "FZF_DEFAULT_COMMAND" fdcmd) - (setenv "FZF_DEFAULT_COMMAND" findcmd))) + "echo .; " + "echo ..; " + "command " find " -L . " + "-mindepth 1 " + "\\( -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' \\) -prune " + "-o -print " + "2> /dev/null " + "| " + "cut -b3-")) + (fdcmd (concat "set -eu; set -o pipefail; " + "echo .; " + "echo ..; " + "command fd " + "--follow --hidden --no-ignore " + "--color always " + "2>/dev/null"))) + (if (executable-find "fd") + (setenv "FZF_DEFAULT_COMMAND" fdcmd) + (setenv "FZF_DEFAULT_COMMAND" findcmd))) (set-variable 'fzf/window-height 45) (set-variable 'fzf/args "--print-query --ansi --color='bg+:-1' --inline-info --cycle") ;; (set-variable 'fzf/args "--print-query --ansi --inline-info --cycle")