Skip to content

Instantly share code, notes, and snippets.

@nyameko
Created June 6, 2017 11:39
Show Gist options
  • Save nyameko/c8792a92063b069ae6555317048dbba4 to your computer and use it in GitHub Desktop.
Save nyameko/c8792a92063b069ae6555317048dbba4 to your computer and use it in GitHub Desktop.
(use-package elisp
:bind (("C-x b" . ibuffer)
("C-x C-b" . helm-buffers-list)
("C-<f7>" . compile) ;; Redefined under C/C++
("C-<f8>" . gdb)))
(defun my/insert-lod ()
"Sigh... I really expected more from you."
(interactive)
(insert "ಠ_ಠ"))
(global-set-key (kbd "C-x 8 d") 'my/insert-lod)
(defun my/insert-ows ()
"Sup son...?"
(interactive)
(insert "¯\_(ツ)_/¯"))
(global-set-key (kbd "C-x 8 )") 'my/insert-ows)
(defun my/insert-wtf-idk ()
"Ermmm... WTF? Sorry, I've got no idea."
(interactive)
(insert "¯\_(°_O)_/¯"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment