Skip to content

Commit

Permalink
Misc
Browse files Browse the repository at this point in the history
  • Loading branch information
dakrone committed Jan 9, 2016
1 parent 1fb5492 commit d327883
Showing 1 changed file with 11 additions and 14 deletions.
25 changes: 11 additions & 14 deletions emacs.org
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -268,8 +268,6 @@ things add hooks that don't work if packages aren't installed.
(require 'use-package) (require 'use-package)
;; Set to t to debug package loading or nil to disable ;; Set to t to debug package loading or nil to disable
(setq use-package-verbose nil) (setq use-package-verbose nil)
;; Always ensure the package is downloaded/installed
(setq use-package-always-ensure t)
#+END_SRC #+END_SRC


** Setting up $PATH and other vars ** Setting up $PATH and other vars
Expand Down Expand Up @@ -1087,7 +1085,6 @@ and dired tramp buffers are great for file management.
(use-package tramp (use-package tramp
:defer 5 :defer 5
:config :config
(setq )
;; Turn of auto-save for tramp files ;; Turn of auto-save for tramp files
(defun tramp-set-auto-save () (defun tramp-set-auto-save ()
(auto-save-mode -1)) (auto-save-mode -1))
Expand Down Expand Up @@ -1241,9 +1238,12 @@ writable-dired mode is aawwweeeesssoooommee, it makes renames super easy.
:config :config
(add-to-list 'dired-omit-extensions ".DS_Store")) (add-to-list 'dired-omit-extensions ".DS_Store"))
(customize-set-variable 'diredp-hide-details-initially-flag nil) (customize-set-variable 'diredp-hide-details-initially-flag nil)
(use-package dired+) (use-package dired+
:ensure t)
(use-package dired-aux (use-package dired-aux
:init (use-package dired-async)) :init
(use-package dired-async
:ensure async))
(put 'dired-find-alternate-file 'disabled nil) (put 'dired-find-alternate-file 'disabled nil)
(setq ls-lisp-dirs-first t (setq ls-lisp-dirs-first t
dired-recursive-copies 'always dired-recursive-copies 'always
Expand Down Expand Up @@ -4844,16 +4844,13 @@ We can browse to anything that looks like a URL with =C-x m=.
(global-set-key (kbd "C-x m") 'browse-url-at-point) (global-set-key (kbd "C-x m") 'browse-url-at-point)
#+end_src #+end_src


I use EWW as my default browser in Emacs; certain things, I need to jump out of EWW and in to a real I use EWW as my default browser in Emacs; certain things, I need to jump out of
browser with javascript; which I can do if I just hit =&= -- it'll drop me in to a firefox session EWW and in to a real browser with javascript; which I can do if I just hit =&=
without a hassle. -- it'll drop me in to a firefox session without a hassle.

There are certain sites that, despite my best abilities, I cannot make work in EWW. For these, I
launch Firefox directly, instead of hitting a silly man in the middle.


#+begin_src emacs-lisp :tangle yes There are certain sites that, despite my best abilities, I cannot make work in

EWW. For these, I launch Firefox directly, instead of hitting a silly man in the
#+end_src middle.


#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package eww (use-package eww
Expand Down

0 comments on commit d327883

Please sign in to comment.