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
# Path to your oh-my-zsh installation. | |
export ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
ZSH_THEME="ducknorris" | |
# Uncomment the following line to use case-sensitive completion. |
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
Sub GetSublimeTextKeyBindings() | |
Dim cmd As Command | |
Dim ow As OutputWindow = DTE.Windows.Item(Constants.vsWindowKindOutput).Object | |
Dim owp As OutputWindowPane | |
Dim exists As Boolean | |
Dim i As Integer | |
Dim sArray() As String | |
Dim dict As New System.Collections.Generic.Dictionary(Of String, String)() |