diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2016-06-28 18:03:01 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2016-06-28 18:04:18 +0200 |
| commit | f3f2e3155c400e47f3ccc5c05e830a70c3addbe3 (patch) | |
| tree | ca4ccb324d3c2dd1071b268f883fd769f596f638 /soria-theme.el | |
| parent | efcd5ca9a870cf96f2061d71be381250f75d7954 (diff) | |
| download | soria-f3f2e3155c400e47f3ccc5c05e830a70c3addbe3.tar.gz soria-f3f2e3155c400e47f3ccc5c05e830a70c3addbe3.zip | |
Added eldoc and eshell
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'soria-theme.el')
| -rw-r--r-- | soria-theme.el | 43 |
1 files changed, 42 insertions, 1 deletions
diff --git a/soria-theme.el b/soria-theme.el index 093d530..fba49b7 100644 --- a/soria-theme.el +++ b/soria-theme.el @@ -378,7 +378,7 @@ The theme has to be reloaded after changing anything in this group." `(flycheck-fringe-info ((,(append '((supports :underline (:style wave))) class) (:underline (:style wave :color ,soria-blue) :inherit unspecified)))) - ;; + ;; Flyspell `(flyspell-duplicate @@ -388,6 +388,47 @@ The theme has to be reloaded after changing anything in this group." `(flyspell-incorrect ((,(append '((supports :underline (:style wave))) class) (:underline (:style wave :color ,soria-redpastel) :inherit unspecified)))) + + ;; eldoc + + `(eldoc-highlight-function-argument + ((,class (:foreground ,soria-darkgreen + :underline nil)))) + + ;; eshell + + `(eshell-prompt + ((,class (:inherit default)))) + + `(eshell-ls-archive + ((,class (:inherit default)))) + + `(eshell-ls-backup + ((,class (:inherit default)))) + + `(eshell-ls-clutter + ((,class (:inherit default)))) + + `(eshell-ls-unreadable + ((,class (:inherit default)))) + + `(eshell-ls-product + ((,class (:inherit default)))) + + `(eshell-ls-special + ((,class (:inherit default)))) + + `(eshell-ls-directory + ((,class (:foreground ,soria-blue)))) + + `(eshell-ls-executable + ((,class (:foreground ,soria-yellow)))) + + `(eshell-ls-missing + ((,class (:foreground ,soria-redpastel)))) + + `(eshell-ls-symlink + ((,class (:foreground ,soria-darkpurple)))) ) ) |
