GitCommands.Settings.Settings C# (CSharp) Method

Settings() static private method

static private Settings ( ) : System
return System
        static Settings()
        {
            if (!RunningOnWindows())
            {
                PathSeperator = '/';
                PathSeperatorWrong = '\\';
            }

            BranchBorders = true;
            StripedBranchChange = true;
            MulticolorBranches = true;
            DiffAddedExtraColor = Color.FromArgb(135, 255, 135);
            DiffAddedColor = Color.FromArgb(200, 255, 200);
            DiffRemovedExtraColor = Color.FromArgb(255, 150, 150);
            DiffRemovedColor = Color.FromArgb(255, 200, 200);
            DiffSectionColor = Color.FromArgb(230, 230, 230);
            RemoteBranchColor = Color.Green;
            BranchColor = Color.DarkRed;
            GraphColor = Color.Red;
            TagColor = Color.DarkBlue;
            OtherTagColor = Color.Gray;
            AutoStartPageant = true;
            Pageant = "";
            Puttygen = "";
            Plink = "";
            GitLog = new CommandLogger();
            MaxCommits = 2000;
            GitCommand = "git.cmd";
            ShowRevisionGraph = true;
            UseFastChecks = true;
            RelativeDate = true;
            Dictionary = "en-US";
            OrderRevisionByDate = true;
            Smtp = "";
            PullMerge = "merge";
            Encoding = Encoding.Default;
            RevisionGraphThickness = 1F;
            RevisionGraphWidth = 6;
            FollowRenamesInFileHistory = true;
            ShowAuthorGravatar = true;
            AuthorImageCacheDays = 5;
            AuthorImageSize = 80;
            IconColor = "default";
            CustomHomeDir = "";
            Translation = "";
            CommitInfoShowContainedInBranches = true;
            CommitInfoShowContainedInTags = true;
            RevisionGridQuickSearchTimeout = 700;
            ApplicationDataPath = Application.UserAppDataPath + Settings.PathSeperator.ToString();
            ShowGitStatusInBrowseToolbar = false;
            LastCommitMessage = "";
            ShowErrorsWhenStagingFiles = true;
            RevisionGraphDrawNonRelativesGray = true;
        }