(def-package! lsp-mode
:init
(add-to-list 'exec-path "/Users/jay/elixir-ls/release")
:config
(setq lsp-enable-eldoc t
lsp-enable-completion-at-point t))
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
.css-checkbox { | |
font-size: 16px; | |
input[type="checkbox"]:not(old) { | |
width: 2em; | |
margin: 0; | |
padding: 0; | |
opacity: 0; | |
font-size: 1em; |
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
(function () { | |
var $nav = $('nav.top-nav'); | |
var navHidden = false; | |
var slideDuration = 200; | |
var $fullPage = $('#fullpage'); | |
var haveFullPage = $fullPage.length > 0; | |
var sliderArray = []; | |
function sectionLoad(section) { |
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
/** | |
* Created by jay on 5/30/17. | |
*/ | |
(function () { | |
var circData = [ | |
{ | |
percent: 0.9, | |
tag: 'Arbete' | |
}, |
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
@import "../mixins"; | |
@import "../variables"; | |
@mixin on-circle($item-count, $circle-size, $item-size) { | |
position: relative; | |
width: $circle-size; | |
height: $circle-size; | |
padding: 0; | |
border-radius: 50%; | |
list-style: none; |
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
(function() { | |
if($('#new-upload').length > 0) { | |
var _URL = window.URL || window.webkitURL; | |
var $imagePreview = $('.image-preview'); | |
var sizeLimit = 300; | |
var dimLimit = 1024; | |
var fileTypes = "image/png image/jpeg image/gif img/bmp"; |
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
private rules = { | |
validtime: (input) => { | |
if (input.is("[data-type=time-picker]")) { | |
let val = input.val().toString(); | |
val = val.replace(/[^0-9\.\,\:]/g, ""); | |
val = val.replace(/[,.]/g, ":"); | |
if (val.indexOf(":") === -1) { | |
if (val.length === 3) { |
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
(defvar evil--refresh-cursor-last-executed 0 | |
"Unix time of when the evil cursor was last refreshed") | |
(defvar evil-refresh-cursor-delay 0.1 | |
"Max delay in seconds between each cursor refresh") | |
(defvar evil--refresh-cursor-current-timer nil | |
"Current timer keeping track of cursor refresh changes") | |
(defvar evil--refresh-cursor-delayed-specs nil | |
"Cons pair of cursor (state . buffer) to set after the delay") |
This guide provides instructions for an Arch Linux installation featuring full-disk encryption via LVM on LUKS and an encrypted boot partition (GRUB) for UEFI systems.
Following the main installation are further instructions to harden against Evil Maid attacks via UEFI Secure Boot custom key enrollment and self-signed kernel and bootloader.
You will find most of this information pulled from the Arch Wiki and other resources linked thereof.
Note: The system was installed on an NVMe SSD, substitute /dev/nvme0nX
with /dev/sdX
or your device as needed.