Skip to content

Instantly share code, notes, and snippets.

View jerviscui's full-sized avatar
😺
Crazy Quantum Reading

Jervis jerviscui

😺
Crazy Quantum Reading
View GitHub Profile
@jerviscui
jerviscui / 护眼色.txt
Last active October 20, 2020 04:18
背景颜色,绿豆沙色,护眼色
#c7edcc
@jerviscui
jerviscui / vs-ext-viasfora.vsftheme
Last active November 3, 2020 06:52
VS extension viasfora theme config file.
{
"viasfora.keyword.flowcontrol": {
"foreground": "OrangeRed",
"background": "Automatic",
"style": "None"
},
"viasfora.keyword.linq": {
"foreground": "MediumSeaGreen",
"background": "Automatic",
"style": "None"
@jerviscui
jerviscui / vs-ext-viasfora.xml
Last active November 3, 2020 06:51
VS extension viasfora setting config file.
<?xml version="1.0" encoding="utf-8"?>
<viasfora>
<KeywordClassifierEnabled>False</KeywordClassifierEnabled>
<FlowControlKeywordsEnabled>False</FlowControlKeywordsEnabled>
<VisibilityKeywordsEnabled>False</VisibilityKeywordsEnabled>
<QueryKeywordsEnabled>False</QueryKeywordsEnabled>
<FlowControlUseItalics>False</FlowControlUseItalics>
<EscapeSequencesEnabled>True</EscapeSequencesEnabled>
<CurrentLineHighlightEnabled>False</CurrentLineHighlightEnabled>
<CurrentColumnHighlightEnabled>False</CurrentColumnHighlightEnabled>
@jerviscui
jerviscui / .minttyrc
Created October 20, 2020 09:43
Windows GitBash 配置文件,路径:C:\Users\<user>
BoldAsFont=-1
Columns=110
Rows=40
FontHeight=10
MiddleClickAction=void
RightClickAction=paste
CopyOnSelect=yes
ClicksTargetApp=yes
ThemeFile=flat-ui
@jerviscui
jerviscui / .wslconfig
Created October 20, 2020 09:45
WSL 配置文件,路径:C:\Users\<user>
[wsl2]
processors=2 # Makes the WSL 2 VM use two virtual processors
memory=4GB # Limits VM memory in WSL 2 to 4 GB
swap=1GB
@jerviscui
jerviscui / settings.json
Created October 20, 2020 09:51
Windows Terminal 配置文件
// This file was initially generated by Windows Terminal 1.2.2381.0
// It should still be usable in newer versions, but newer versions might have additional
// settings, help text, or changes that you will not see unless you clear this file
// and let us generate a new one for you.
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
@jerviscui
jerviscui / configuration.json
Last active November 19, 2020 10:18
Docker Desktop configuration for Docker Engine.
{
"registry-mirrors": [
"https://registry.cn-hangzhou.aliyuncs.com"
],
"insecure-registries": [],
"debug": false,
"experimental": false,
"features": {
"buildkit": true
}
@jerviscui
jerviscui / .editorconfig
Last active August 10, 2021 06:36
EditorConfig for Visual Studio
##########################################
# Common Settings
##########################################
# This file is the top-most EditorConfig file
root = true
# All Files
[*]
charset = utf-8
@jerviscui
jerviscui / Example.CSharp.sln.DotSettings
Last active October 18, 2021 03:47
Resharper team configuration
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeEditing/GenerateMemberBody/DocumentationGenerationKind/@EntryValue">Inherit</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/AnalysisEnabled/@EntryValue">SOLUTION</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=InterpolatedStringExpressionIsNotIFormattable/@EntryIndexedValue">HINT</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=UseFormatSpecifierInInterpolation/@EntryIndexedValue">HINT</s:String>
<s:Boolean x:Key="/Default/CodeStyle/CodeCleanup/CleanupOnSave/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeCleanup/PartCleanupOnSave/@EntryValue">True</s:Boolean>
<s:String x:Key="/Default
@jerviscui
jerviscui / Directory.Build.props
Last active September 10, 2021 07:00
.Net project shared configuration.
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Version>0.1.0</Version>
<Company>xxx</Company>
<Authors>xxx</Authors>