Explore >> Select a destination


You are here

vxlabs.com
| | blog.jenkster.com
11.9 parsecs away

Travel
| | The personal blog of Kris Jenkins, geek.
| | davemq.github.io
11.4 parsecs away

Travel
| | I keep my Emacs config files for my home systems and my work systems in a common Git repository, in different branches. I started doing this several years ago, but paused updating the repository for a while. I decided to
| | hiepph.xyz
9.8 parsecs away

Travel
| | My ~/.emacs.d configuration used to be a mess. For example, here are 2 old configurations for IDO and sidebar neotree. ;; ### IDO ##### (require 'ido) ;; enable IDO (ido-mode 1) (ido-everywhere 1) (ido-ubiquitous-mode 1) (setq ido-enable-flex-matching t) (setq ido-use-filename-at-point nil) (setq ido-auto-merge-work-directories-length -1) (setq ido-use-virtual-buffers t) ;; Shows a list of buffers (global-set-key (kbd "C-x C-b") 'ibuffer) ;; #### Neo Tree ##### (require-package 'neotree) ;; Bind F8 to sh...
| | lambdaland.org
17.3 parsecs away

Travel
| Are you tired of having a particular buffer pop open in the wrong direction? Do you wish, for example, that the Racket REPL buffer showed up on the right in a vertical split, rather than below in a horizontal one? Look no further. I give you, display-buffer-alist: (add-to-list 'display-buffer-alist '("\\*Racket REPL \\*" (display-buffer-in-direction) (direction . right))) That little snippet will make sure when you hit C-c C-k inside of a racket-mode buffer, a REPL will pop up on the right-side instead o...