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
/* | |
* Copyright (c) 2016-present Arctic Ice Studio <development@arcticicestudio.com> | |
* Copyright (c) 2016-present Sven Greb <development@svengreb.de> | |
* | |
* Project: Nord | |
* Version: 0.2.0 | |
* Repository: https://github.com/arcticicestudio/nord | |
* License: MIT | |
* References: | |
* https://www.w3.org/TR/css-variables |
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
@import url(https://gist.githubusercontent.com/jhorst11/3f91cab24afb009a24cee533065effea/raw/d626662d9e0fc10e2afede7a7b763f07f6bd0fa7/nord.css); | |
code[class*="language-"], | |
pre[class*="language-"] { | |
color: #f8f8f2; | |
background: none; | |
font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace; | |
text-align: left; | |
white-space: pre; | |
word-spacing: normal; |
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
<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:Boolean x:Key="/Default/CodeEditing/Intellisense/CodeCompletion/IntelliSenseCompletingCharacters/CSharpCompletingCharacters/UpgradedFromVSSettings/@EntryValue">True</s:Boolean> | |
<s:Boolean x:Key="/Default/CodeEditing/Intellisense/CodeCompletion/IntellisenseEnabled/IntellisenseEnabledSettingCSharp/IntellisenseEnabled/@EntryValue">True</s:Boolean> | |
<s:String x:Key="/Default/CodeEditing/Intellisense/CodeCompletion/IntellisenseGloballyEnabled/IntellisenseEnabled/@EntryValue">PerTechnology</s:String> | |
<s:String x:Key="/Default/CodeStyle/CodeCleanup/RecentlyUsedProfile/@EntryValue">Default: Reformat Code</s:String> | |
<s:Boolean x:Key="/Default/CodeStyle/Generate/=DisposePattern/@KeyIndexDefined">True</s:Boolean> | |
<s:String x:Key="/Default/ |
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
alias gs='git status' | |
alias ga='git add --all' | |
alias gf='git fetch --all' | |
alias gsu='git submodule sync && git submodule update --init --recursive' | |
alias repos='cd ~/Source/Repos' | |
alias sln='start *.sln' | |
alias startssh='eval `ssh-agent -s` && ssh-add ~/.ssh/id_rsa' | |
alias rmlocals='git branch --merged master | grep -v "\* master" | xargs -n 1 git branch -d' |