This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Auto Closing Tag | |
| Auto Rename Tag | |
| Better C++ Syntax | |
| Better Comments | |
| Bookmarks | |
| C/C++ | |
| Close All | |
| Code Spall Checker | |
| Debugger for Firefox | |
| Dev Containers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Reference: https://github.com/github/gitignore | |
| # From: https://gist.github.com/edesdan/6bb43343740bcd54ef0f56a384a2f66f | |
| ###################### | |
| ###### Mac OS X ###### | |
| ###################### | |
| # Folder view configuration files | |
| .DS_Store | |
| Desktop.ini |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #--------- | |
| # Aliases | |
| #--------- | |
| # --show-control-chars: help showing Korean or accented characters | |
| alias ls='ls -F --color=auto --show-control-chars' | |
| alias lss='ls -as' | |
| alias ll='ls -al' | |
| alias la="ls -A" | |
| #------------- |