Skip to content

Instantly share code, notes, and snippets.

View leotaku's full-sized avatar
🕳️

Leo Gaskin leotaku

🕳️
View GitHub Profile
// Home-row only hints
Hints.characters = 'asdghjkl';
// Settings
settings.focusFirstCandidate = true;
settings.digitForRepeat = true;
settings.tabsThreshold = 0;
settings.omnibarSuggestionTimeout = 100;
settings.scrollStepSize = 150;
// Home-row only hints
Hints.characters = 'asdghjkl';
// Settings
settings.focusFirstCandidate = true;
settings.digitForRepeat = true;
settings.tabsThreshold = 0;
settings.omnibarSuggestionTimeout = 100;
settings.scrollStepSize = 150;
parcelRequire=function(e,r,n,t){var i="function"==typeof parcelRequire&&parcelRequire,o="function"==typeof require&&require;function u(n,t){if(!r[n]){if(!e[n]){var f="function"==typeof parcelRequire&&parcelRequire;if(!t&&f)return f(n,!0);if(i)return i(n,!0);if(o&&"string"==typeof n)return o(n);var c=new Error("Cannot find module '"+n+"'");throw c.code="MODULE_NOT_FOUND",c}p.resolve=function(r){return e[n][1][r]||r},p.cache={};var l=r[n]=new u.Module(n);e[n][0].call(l.exports,p,l,l.exports,this)}return r[n].exports;function p(e){return u(p.resolve(e))}}u.isParcelRequire=!0,u.Module=function(e){this.id=e,this.bundle=u,this.exports={}},u.modules=e,u.cache=r,u.parent=i,u.register=function(r,n){e[r]=[function(e,r){r.exports=n},{}]};for(var f=0;f<n.length;f++)u(n[f]);if(n.length){var c=u(n[n.length-1]);"object"==typeof exports&&"undefined"!=typeof module?module.exports=c:"function"==typeof define&&define.amd?define(function(){return c}):t&&(this[t]=c)}return u}({"bCLS":[function(require,module,exports) {
module.exp
test
test
test
Face: org-todo (sample) (customize this face)
Documentation:
Face for TODO keywords.
Defined in ‘org-faces.el’.
Family: unspecified
Foundry: unspecified
Width: unspecified
position: 4 of 27 (11%), column: 3
character: O (displayed as O) (codepoint 79, #o117, #x4f)
preferred charset: ascii (ASCII (ISO646 IRV))
code point in charset: 0x4F
script: latin
syntax: w which means: word
category: .:Base, L:Left-to-right (strong), a:ASCII, l:Latin, r:Roman
to input: type "C-x 8 RET 4f" or "C-x 8 RET LATIN CAPITAL LETTER O"
buffer code: #x4F
file code: #x4F (encoded by coding system utf-8-unix)
{ pkgs ? import <nixpkgs> {}, ... }:
with pkgs;
hunspellWithDicts
(lib.mapAttrsToList (n: v: v)
hunspellDicts)
# hunspellWithDicts (with hunspellDicts; [
# de-at
# de-ch
# de-de
@leotaku
leotaku / configuration.nix
Last active August 13, 2018 06:57
rpi-nixos
{ config, pkgs, lib, ... }:
{
# NixOS wants to enable GRUB by default
boot.loader.grub.enable = false;
# Enables the generation of /boot/extlinux/extlinux.conf
boot.loader.generic-extlinux-compatible.enable = true;
# Needed for the virtual console to work on the RPi 3, as the default of 16M doesn't seem to be enough.
boot.kernelParams = ["cma=32M"];