- We've got some components
A
,B
andC
which provide different slots.const A = { template: `<div><slot name="a">Default A Content</slot></div>` }
const B = {
# Aliases | |
# ---------- | |
alias ..="cd .." | |
alias ll="exa --long --header --git -a" | |
alias n="nvim" | |
alias c="cd ~/Code" | |
alias s="cd ~/Code/sidedoor" | |
alias config="cd ~/.config" | |
alias bluetooth="sudo pkill bluetoothd" # When bluetooth gets laggy, just kill it. |
""" | |
""" https://github.com/JetBrains/ideavim#Files | |
""" https://gist.github.com/seanwash/b45169cbc5d90868f9f221191d67bec5 | |
""" | |
""" | |
""" Plugins | |
""" | |
set surround | |
set commentary |
"schemes": [ | |
{ | |
"name" : "GitHub Dark", | |
"background" : "#24292e", | |
"black" : "#24292e", | |
"blue" : "#044289", | |
"cyan" : "#79b8ff", | |
"foreground" : "#fafbfc", | |
"green" : "#28a745", | |
"purple" : "#6f42c1", |
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"tasks": [ | |
// | |
// Mix Tasks | |
// | |
{ | |
"label": "mix.compile (force)", |
Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
ActivityTweet | |
generic_activity_highlights | |
generic_activity_momentsbreaking | |
RankedOrganicTweet | |
suggest_activity | |
suggest_activity_feed | |
suggest_activity_highlights | |
suggest_activity_tweet |
const openColors = require('open-color/open-color.json') | |
const colors = {} | |
Object.entries(openColors).forEach(([color, values]) => { | |
if (['white', 'black'].includes(color)) return | |
colors[color] = { ...values } | |
}) | |
module.exports = { |
import gqlFetch from '../helpers/gql-fetch' | |
import config from '../config' | |
export default { | |
name: 'extraArgs', | |
getExtraArgs: store => { | |
return { | |
gqlFetch: gqlFetch({ | |
apiUrl: config.apiUrl, | |
getToken: () => store.selectAuthToken(), |
defmodule ScoutApm.Absinthe.Plug do | |
alias ScoutApm.Internal.Layer | |
require Logger | |
@error_prefix "GraphQL query document could not be parsed" | |
@endpoint_prefix "GraphQL" | |
@default_action_name "unknown" | |
def init(default), do: default |