Skip to content

Instantly share code, notes, and snippets.

@modulitos
modulitos / data.csv
Created August 13, 2015 20:39
data! from editdata.org!
asdf fes
yup! it works!
;; Basic evil-mode and org-mode config to get started
;; Include this in your Emacs config file (ie ~/.emacs.d/init.el or ~/.emacs)
(require 'evil)
;; Enable Evil mode as defuault
(evil-mode 1)
;; Treat wrapped line scrolling as single lines
(define-key evil-normal-state-map (kbd "j") 'evil-next-visual-line)
(define-key evil-normal-state-map (kbd "k") 'evil-previous-visual-line)
;;; esc quits pretty much anything (like pending prompts in the minibuffer)
(define-key evil-normal-state-map [escape] 'keyboard-quit)
* root topic - TAB and S-TAB to toggle folding
** child topic
child topic text
*** leaf topic:
some text blah
blah
blah
*** another leaf topic:
# test table - TAB to cycle through columns, M-e to move point to end of cell
// var swarm = require('discovery-swarm')
// var sw = swarm({
// dns: {
// server: [
// 'discovery1.publicbits.org',
// 'discovery2.publicbits.org'
// ]
// },
// dht: true
// })
@modulitos
modulitos / userChrome.css
Created April 21, 2019 08:20
~/.mozilla/<user>.default/chrome/userChrome.css
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* to hide the native tabs */
#TabsToolbar {
visibility: collapse;
}
/* to hide the sidebar header */
#sidebar-header {
visibility: collapse;