{
	"folders": [
		{
			//"path": ".."
			"path": "../"
		},
		{
			//파일 탐색기 다운로드용 디렉토리
			"path": "~/download"
		},
	],
	"settings": {
		"editor.maxTokenizationLineLength": 10000,
		"terminal.integrated.scrollback": 10000,
		"terminal.integrated.copyOnSelection": true,
		"files.exclude": {
			"**/*.a": true,
			"**/*.so": true,
		},
		"files.watcherExclude": {
			"**/*.o*": true,
		},
		"C_Cpp.files.exclude": {
			"**/.vscode": true,
		},
		"search.exclude": {
			"**/.vscode": true,
			"**/*.code-search": true,
			"**/.tags": true,
		},
		"svn.multipleFolders.ignore": [
			"**/node_modules",
		],
		"svn.sourceControl.ignore": [
			"**/node_modules",
		],
		"svn.sourceControl.ignoreOnCommit": [
			"ignore-on-commit",
		],
		"svn.sourceControl.ignoreOnStatusCount": [
			"ignore-on-commit"
		],
		"editor.rulers": [
			80,
			{
				"column": 100,
				"color": "#693f07"
			},
			{
				"column": 120,
				"color": "#3a0707"
			},
		],
		"files.associations": {
			"cstdio": "cpp",
			"*.h": "c",
			"*.y": "c",
			"*.py": "python",
			"*.log": "plaintext",
			"passwd": "shellscript",
		},
		"currentFilePath.defaultPathStyle": "unix",
		// "logViewer.chunkSizeKb": 1024,
		// "logViewer.options": {
		// 	"fileCheckInterval": 300,
		// 	"fileListInterval": 2000
		// },
		// "logViewer.followTailMode": "manual",
		// "logViewer.watch": [
		// 	{
		// 		"title": "GW_Debug",
		// 		"pattern": "/var/log/nginx/error.*"
		// 	},
		// ],
		"remote.extensionKind": {
		},
		"gotoSymbolStack.currentStackPosition": 0,
		"gotoSymbolStack.maxStackPosition": 0,
		"gotoSymbolStack.filePositionInfo": [],
		"vim.useSystemClipboard": true,
		"terminal.explorerKind": "external",
		"terminal.integrated.allowMnemonics": true,
		// 시딩하지 않음
		"editor.find.seedSearchStringFromSelection": "never",
	},
}