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
| rails new [AppName] --database=postgresql --skip-test --webpack=stimulus | |
| http://amalrik.github.io/2019/03/14/settingup-rails6-rspec/ | |
| https://hackernoon.com/integrate-bootstrap-4-and-font-awesome-5-in-rails-6-u87u32zd |
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
| CraigMaslowski.erb | |
| DavidAnson.vscode-markdownlint | |
| eamodio.gitlens | |
| jebbs.plantuml | |
| karunamurti.rspec-snippets | |
| mikestead.dotenv | |
| ms-vscode.cpptools | |
| PKief.material-icon-theme | |
| possan.nbsp-vscode | |
| rebornix.ruby |
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
| { | |
| // Bugfixing | |
| "keyboard.dispatch": "keyCode", | |
| // Editor settings | |
| "editor.cursorBlinking": "smooth", | |
| "editor.cursorStyle": "block", | |
| "editor.fontLigatures": false, | |
| "editor.fontSize": 12, | |
| "editor.fontWeight": "600", | |
| "editor.formatOnPaste": true, |
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
| #!/bin/bash | |
| ##################################################### | |
| # Name: Bash CheatSheet for Mac OSX | |
| # | |
| # A little overlook of the Bash basics | |
| # | |
| # Usage: | |
| # | |
| # Author: J. Le Coupanec | |
| # Date: 2014/11/04 |
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
| ctrlp.vim | |
| lightline.vim | |
| nord-vim | |
| vim-gitgutter |
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
| execute pathogen#infect() | |
| syntax on | |
| """""""""""""""""""" | |
| " general | |
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| filetype plugin indent on | |
| set nocompatible | |
| set encoding=utf8 | |
| scriptencoding utf-8 |