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
set nocompatible " be iMproved, required | |
filetype off " required | |
" Specify a directory for plugins | |
" - For Neovim: ~/.local/share/nvim/plugged | |
" - Avoid using standard Vim directory names like 'plugin' | |
call plug#begin('~/.vim/plugged') | |
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } | |
Plug 'junegunn/fzf.vim' |
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
/* DLP Color Scheme: | |
Background: #21301f | |
Header Background: #0A1C0B | |
Text: #BAD6c2 | |
Time Text: #A6AAA2 | |
Link: #93be91 | |
Link Hover: #34d238 | |
*/ | |
/* |
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
body { | |
background: black; | |
color: #93BE91; | |
} | |
.navbar { | |
background: #21301f !important; | |
} | |
.page-header { |
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
// ==UserScript== | |
// @name FFN - User Fandom Filter (Chrome)(deprecated) | |
// @namespace http://tampermonkey.net | |
// @description This version is deprecated - see ffn_filter.user.js in my gists for the maintained version. This was my first tampermonkey/greasemonkey script and I didn't realize that I didn't need two versions. Allows you to sort through a users stories and their favorite ones too. | |
// @author dspencer001/draykfyre | |
// @homepageURL https://gist.github.com/dspencer001 | |
// @version 1.1.5 | |
// @updateURL https://gist.githubusercontent.com/dspencer001/53d29af1d1187498167f87ce5ccb200e/raw | |
// @downloadURL https://gist.githubusercontent.com/dspencer001/53d29af1d1187498167f87ce5ccb200e/raw | |
// @supportURL https://forums.darklordpotter.net/showthread.php?t=36202 |
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
// ==UserScript== | |
// @name FFN - User Fandom Filter | |
// @namespace http://tampermonkey.net | |
// @description Allows you to sort through a users stories and their favorite ones too. | |
// @author dspencer001/draykfyre | |
// @homepageURL https://gist.github.com/dspencer001 | |
// @include https://www.fanfiction.net/u/*/* | |
// @include https://www.fanfiction.net/~* | |
// @require https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.min.js | |
// @version 1.1.8 |