private void ChangeThemeButton_Click(object sender, RoutedEventArgs e)
        {
            _currentTheme = (_currentTheme + 1) % Enum.GetNames(typeof(ThemeName)).Length;

            _textMateInstallation.SetTheme(_registryOptions.LoadTheme(
                                               (ThemeName)_currentTheme));
        }