moved files to specific folders

This commit is contained in:
Eric D. Rohler 2020-03-31 08:57:21 -04:00
parent 74ce57947d
commit 93b6852e48
6 changed files with 340 additions and 191 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<key name="Software">
<key name="ConEmu">
<key name=".Vanilla" modified="2020-03-29 14:40:50" build="191012">
<key name=".Vanilla" modified="2020-03-30 15:52:42" build="191012">
<value name="ColorTable00" type="dword" data="001e1d1b"/>
<value name="ColorTable01" type="dword" data="00d28b26"/>
<value name="ColorTable02" type="dword" data="0014b482"/>
@ -124,11 +124,11 @@
<value name="ColorKeyValue" type="dword" data="00010101"/>
<value name="UseCurrentSizePos" type="hex" data="01"/>
<value name="WindowMode" type="dword" data="0000051f"/>
<value name="ConWnd Width" type="dword" data="0000009c"/>
<value name="ConWnd Width" type="dword" data="0000009e"/>
<value name="ConWnd Height" type="dword" data="00000056"/>
<value name="Cascaded" type="hex" data="01"/>
<value name="ConWnd X" type="long" data="1919"/>
<value name="ConWnd Y" type="long" data="-1"/>
<value name="ConWnd X" type="long" data="1916"/>
<value name="ConWnd Y" type="long" data="21"/>
<value name="16bit Height" type="ulong" data="0"/>
<value name="AutoSaveSizePos" type="hex" data="01"/>
<value name="IntegralSize" type="hex" data="00"/>

19
cmder/user_profile.cmd Normal file
View File

@ -0,0 +1,19 @@
:: use this file to run your own startup commands
:: use in front of the command to prevent printing the command
:: uncomment this to have the ssh agent load when cmder starts
:: call "%GIT_INSTALL_ROOT%/cmd/start-ssh-agent.cmd" /k exit
:: uncomment the next two lines to use pageant as the ssh authentication agent
:: SET SSH_AUTH_SOCK=/tmp/.ssh-pageant-auth-sock
:: call "%GIT_INSTALL_ROOT%/cmd/start-ssh-pageant.cmd"
:: you can add your plugins to the cmder path like so
:: set "PATH=%CMDER_ROOT%\vendor\whatever;%PATH%"
:: arguments in this batch are passed from init.bat, you can quickly parse them like so:
:: more useage can be seen by typing "cexec /?"
:: %ccall% "/customOption" "command/program"
@echo off

41
cmder/user_profile.ps1 Normal file
View File

@ -0,0 +1,41 @@
# Use this file to run your own startup commands
## Prompt Customization
<#
.SYNTAX
<PrePrompt><CMDER DEFAULT>
λ <PostPrompt> <repl input>
.EXAMPLE
<PrePrompt>N:\Documents\src\cmder [master]
λ <PostPrompt> |
#>
[ScriptBlock]$PrePrompt = {
}
# Replace the cmder prompt entirely with this.
# [ScriptBlock]$CmderPrompt = {}
[ScriptBlock]$PostPrompt = {
}
## <Continue to add your own>
# # Delete default powershell aliases that conflict with bash commands
# if (get-command git) {
# del -force alias:cat
# del -force alias:clear
# del -force alias:cp
# del -force alias:diff
# del -force alias:echo
# del -force alias:kill
# del -force alias:ls
# del -force alias:mv
# del -force alias:ps
# del -force alias:pwd
# del -force alias:rm
# del -force alias:sleep
# del -force alias:tee
# }

89
vscode/settings.json Normal file
View File

@ -0,0 +1,89 @@
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Material Theme Darker",
"workbench.activityBar.visible": true,
"workbench.startupEditor": "none",
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"terminal.integrated.shellArgs.windows": [
"/k",
"%USERPROFILE%\\cmder\\vendor\\init.bat"
],
"terminal.explorerKind": "integrated",
"terminal.external.windowsExec": "%USERPROFILE%\\cmder\\cmder.exe",
"team.showWelcomeMessage": false,
"mssql.connections": [
{
"server": "(localdb)\\mssqllocaldb",
"database": "master",
"authenticationType": "Integrated",
"password": ""
}
],
"git.enableSmartCommit": true,
"git.confirmSync": false,
"git.autofetch": true,
"liveServer.settings.donotShowInfoMsg": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"cSpell.userWords": [
"AUTORESPONDER",
"Crosstab",
"GIFs",
"HEADEREDITOR",
"HTTPMETHOD",
"HTTPVERSION",
"MKCOL",
"Neovim",
"PARAMEDITOR",
"PROPFIND",
"PROPPATCH",
"Passthrough",
"RAWHEADERS",
"RAWPARAMETERS",
"RAWREQUEST",
"RAWURL",
"Roadmap",
"TRDP",
"TRDX",
"Telerik",
"URLPARAMS",
"Ungroup",
"buttongroup",
"checkmark",
"cmder",
"dropdownlist",
"endregion",
"hacky",
"hbox",
"iexplore",
"kendo",
"keypress",
"keyvalue",
"kvps",
"powerline",
"rawvalue",
"redir",
"repos",
"tabstrip",
"tilix",
"tmux",
"toggleable",
"ungrouped",
"vbox",
"whitelabeling"
],
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[markdown]": {
"editor.fontFamily": "\"IA Writer Duo S\", monospace",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.lineHeight": 26,
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 64,
"editor.quickSuggestions": false,
},
}