Skip to content

Instantly share code, notes, and snippets.

@yiufung
Created September 19, 2018 06:11
Show Gist options
  • Save yiufung/38be4c3a6832334f36f2441550cf0b12 to your computer and use it in GitHub Desktop.
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`
(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