This file contains 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
{ | |
"workbench.colorTheme": "Night Owl (No Italics)", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontSize": 14, | |
"editor.fontWeight": 325, | |
"editor.letterSpacing": 0, | |
"editor.formatOnSave": true, | |
"editor.minimap.enabled": false, | |
"editor.multiCursorModifier": "alt", | |
"editor.trimAutoWhitespace": true, |
This file contains 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
# Represents a generic document in a document management system. | |
# @abstract | |
# @author John Doe | |
# @since 1.0.0 | |
# @deprecated Use NewDocument instead. | |
class Document | |
# @!attribute [r] title | |
# @return [String] | |
attr_reader :title |
This file contains 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
" +++ Plugins | |
call plug#begin() | |
Plug 'tpope/vim-markdown' | |
" General display | |
Plug 'scrooloose/nerdtree' | |
" Git |