Skip to content

Instantly share code, notes, and snippets.

[START][2022-03-23 22:58:26] LSP logging initiated
[START][2022-06-02 20:48:39] LSP logging initiated
[START][2022-06-24 21:02:39] LSP logging initiated
[START][2022-06-24 21:05:50] LSP logging initiated
[START][2022-06-24 21:05:59] LSP logging initiated
[START][2022-06-24 21:07:31] LSP logging initiated
[START][2022-06-24 21:11:10] LSP logging initiated
[START][2022-06-24 21:11:16] LSP logging initiated
[START][2022-06-24 21:11:53] LSP logging initiated
[START][2022-06-24 21:07:39] LSP logging initiated
@Arelav
Arelav / input.scss
Created April 13, 2022 23:41
Generated by SassMeister.com.
$break-lg: 42;
a {
text-decoration: none;
@media (min-width: $break-lg) {
width: 48%;
}
@media (min-width: $break-lg) {
@Arelav
Arelav / input.scss
Created April 13, 2022 23:41
Generated by SassMeister.com.
$break-lg: 42;
a {
text-decoration: none;
@media (min-width: $break-lg) {
width: 48%;
}
@media (min-width: $break-lg) {
@Arelav
Arelav / input.scss
Created April 13, 2022 23:40
Generated by SassMeister.com.
$break-lg: 42;
a {
text-decoration: none;
@media (min-width: $break-lg) {
width: 48%;
}
}
@Arelav
Arelav / input.scss
Created January 28, 2021 19:02
Generated by SassMeister.com.
@mixin theme {
--navWidgetBgColor: white;
--navWidgetPopperBgColor: red;
}
.theme {
@include theme;
--navWidgetPopperBgColor: green;
@Arelav
Arelav / git-aliases.fish
Last active January 30, 2017 18:27 — forked from nafg/Git aliases for fish shell.fish
git-aliases
# migrating from https://github.com/robbyrussell/oh-my-zsh/blob/master/plugins/git/git.plugin.zsh
# Aliases
alias g='git'
#compdef g=git
alias gst='git status'
#compdef _git gst=git-status
alias gd='git diff'
#compdef _git gd=git-diff
alias gdc='git diff --cached'
@Arelav
Arelav / index.sh
Last active December 19, 2016 10:10 — forked from miguelbermudez/git-aliases-export.sh
Git Aliases from oh-my-zsh git plugin ported to fish shell
#
# Aliases
# (sorted alphabetically)
#
# GIT #
alias g 'git'
alias ga 'git add'