VSCODE settings.json

	{
	  "workbench.sideBar.location": "right", // sidebar on right
	  "editor.wordWrap": "on", // alltime word wrap
	  "[typescriptreact]": {
		"editor.defaultFormatter": "esbenp.prettier-vscode" // prettier formatting
	  },
	  "editor.codeActionsOnSave": {
		"source.organizeImports": true, // sort imports while saving
		"source.fixAll": true // auto-fix all js problem
	  },
	  "workbench.colorTheme": "Noir Poimandres", // my fav theme
	  "editor.fontFamily": "'Cascadia Code', Consolas, 'Courier New', monospace", //cascadia code font
	  "editor.fontWeight": "300", // font weight, perfect for me
	  "editor.fontLigatures": true, // great to see this font ligatures
	  "git.path": "C:\Users\SazzadTanim\Downloads\PortableGit\bin\git.exe", //portable git
	  "[jsonc]": {
		"editor.defaultFormatter": "esbenp.prettier-vscode"
	  },
	  "[javascript]": {
		"editor.defaultFormatter": "esbenp.prettier-vscode"
	  },
	  "git.autofetch": true,
	  "tailwindCSS.classAttributes": ["class", "className", "ngClass", ".*Styles*"] //adding tailwind intellisense
	}