Created
September 19, 2018 06:11
-
-
Save yiufung/38be4c3a6832334f36f2441550cf0b12 to your computer and use it in GitHub Desktop.
Reproduce: `xdg-open` doesn't work in Ubuntu for `counsel-locate-action-extern`
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'package) | |
(setq package-enable-at-startup nil) | |
(add-to-list 'package-archives | |
'("melpa" . "https://melpa.org/packages/")) | |
(package-initialize) | |
(unless (package-installed-p 'use-package) | |
(package-refresh-contents) | |
(package-install 'use-package)) | |
(eval-when-compile | |
(require 'use-package)) | |
;; Start Test | |
(use-package counsel | |
:ensure t | |
:config | |
(ivy-mode 1)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment