View lsp.log
This file contains 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
[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 |
View input.scss
This file contains 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
$break-lg: 42; | |
a { | |
text-decoration: none; | |
@media (min-width: $break-lg) { | |
width: 48%; | |
} | |
@media (min-width: $break-lg) { |
View input.scss
This file contains 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
$break-lg: 42; | |
a { | |
text-decoration: none; | |
@media (min-width: $break-lg) { | |
width: 48%; | |
} | |
@media (min-width: $break-lg) { |
View input.scss
This file contains 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
$break-lg: 42; | |
a { | |
text-decoration: none; | |
@media (min-width: $break-lg) { | |
width: 48%; | |
} | |
} |
View input.scss
This file contains 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
@mixin theme { | |
--navWidgetBgColor: white; | |
--navWidgetPopperBgColor: red; | |
} | |
.theme { | |
@include theme; | |
--navWidgetPopperBgColor: green; |
View git-aliases.fish
This file contains 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
# 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' |
View index.sh
This file contains 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
# | |
# Aliases | |
# (sorted alphabetically) | |
# | |
# GIT # | |
alias g 'git' | |
alias ga 'git add' |