Add additional targets for search-engine layer

This commit is contained in:
smile13241324 2019-08-04 16:32:45 +02:00
parent 85fca8f323
commit 9446a0f5d9
2 changed files with 16 additions and 0 deletions

View file

@ -38,7 +38,11 @@ This layer adds support for the [[https://github.com/hrs/engine-mode][Search Eng
- Maven Central
- Npm
- Hoogle 5
- Hackage Package Search
- Clojure-doc
- Python Package Index
- Python Docs
- C++ Reference
* Install
To use this configuration layer, add it to your =~/.spacemacs=. You will need to

View file

@ -79,9 +79,21 @@
(hoogle
:name "Hoggle 5"
:url "https://hoogle.haskell.org/?hoogle=%s")
(haskell-packages
:name "Hackage Package Search"
:url "https://hackage.haskell.org/packages/search?terms=%s")
(clojure
:name "Clojure Docs"
:url "https://clojuredocs.org/search?q=%s")
(pip
:name "Python Package Index"
:url "https://pypi.org/search/?q=%s")
(python-doc
:name "Python Docs"
:url "https://docs.python.org/3/search.html?q=%s")
(c++-api-reference
:name "C++ Reference"
:url "https://en.cppreference.com/mwiki/index.php?search=%s")
(wolfram-alpha
:name "Wolfram Alpha"
:url "https://www.wolframalpha.com/input/?i=%s")))