This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; Enable ligatures without prettify-symbols | |
| (provide 'add-pragmatapro-symbol-keywords) | |
| (defconst pragmatapro-fontlock-keywords-alist | |
| (mapcar (lambda (regex-char-pair) | |
| `(,(car regex-char-pair) | |
| (0 (prog1 () | |
| (compose-region (match-beginning 1) | |
| (match-end 1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;;; flycheck-rfringe.el --- RFringe for Flycheck -*- lexical-binding: t; -*- | |
| ;; Copyright (C) 2015 Sebastian Wiesner <swiesner@lunaryorn.com> | |
| ;; Copyright (C) 2017 Johnathon Weare <jrweare@gmail.com> | |
| ;; Author: Sebastian Wiesner <swiesner@lunaryorn.com> | |
| ;; Johnathon Weare <jrweare@gmail.com> | |
| ;; Keywords: convenience, frames, tools | |
| ;; Version: 0.2 | |
| ;; Package-Requires: ((emacs "24") (flycheck "0.23") (rfringe "0.0")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| cd /tmp | |
| if ! which lynx > /dev/null; then sudo apt-get install lynx -y; fi | |
| if [ "$(getconf LONG_BIT)" == "64" ]; then arch=amd64; else arch=i386; fi | |
| function download() { | |
| wget $(lynx -dump -listonly -dont-wrap-pre $kernelURL | grep "$1" | grep "$2" | grep "$arch" | cut -d ' ' -f 4) | |
| } |