Skip to content

Instantly share code, notes, and snippets.

# cd /apps if exists
if test -d "apps"
then
cd apps
fi
# PS1
txtgrey='\[\e[0;37m\]' # Light Grey
bldred='\[\e[1;31m\]' # Bold Red
bldgrn='\[\e[1;92m\]' # Bold Green
@Dmc0125
Dmc0125 / setup.md
Last active March 15, 2021 10:46
Bash profile, Nvm, Git, Mongo, Ubuntu
@Dmc0125
Dmc0125 / vscode.md
Last active June 24, 2020 20:41
Visual Studio Code settings, extensions, shortcuts

Extensions

  • vscode-icons
  • Visual Studio IntelliCode
  • Vetur
  • Todo Tree
  • Tailwind CSS IntelliSense
  • Svelte 3 Snippets
  • Svelte
  • Sass
@Dmc0125
Dmc0125 / reset.css
Last active November 10, 2020 13:45
* {
margin: 0;
padding: 0;
border: 0;
box-sizing: border-box;
}
html,
body {
height: 100%;
@Dmc0125
Dmc0125 / vue.config.js
Last active June 4, 2020 11:49
Vue.config.js sass import to every component
module.exports = {
css: {
loaderOptions: {
sass: {
prependData: '@import "@/path/to/styles.extension";',
},
},
},
};