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
| // βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| // PathX.cs β a single-file, zero-dependency drop-in that adds the Python | |
| // pathlib-style `/` operator to C# path composition. | |
| // | |
| // Why a wrapper? | |
| // C# won't let us add operators to `string` (you can't declare operators | |
| // on types you don't own) or to `System.IO.Path` (it's a static class). | |
| // So the leanest possible trick is a tiny wrapper *struct* that: | |
| // β’ implicitly converts to/from `string` (so it drops into every | |
| // existing BCL API that takes a path), |
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
| call plug#begin('~\AppData\Local\nvim\autoload') | |
| Plug 'morhetz/gruvbox' | |
| "Plug 'rdnetto/YCM-Generator', { 'branch': 'stable'} | |
| Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
| Plug 'preservim/nerdtree' | |
| call plug#end() |
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
| // Place your key bindings in this file to override the defaultsauto[] | |
| [ | |
| { | |
| "key": "ctrl+-", | |
| "command": "workbench.action.zoomOut" | |
| }, | |
| { | |
| "key": "ctrl+numpad_subtract", | |
| "command": "-workbench.action.zoomOut" | |
| }, |
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
| { | |
| "workbench.colorTheme": "Material Theme Ocean", | |
| "window.zoomLevel": 0, | |
| "liveSassCompile.settings.formats": [ | |
| { | |
| "extensionName": ".min.css", | |
| "format": "compressed", | |
| "savePath": "/dist/css" | |
| } | |
| ], |
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
| CXX := g++ | |
| CXXFLAGS := -std=c++17 -W | |
| LIBS := | |
| INC := include | |
| BIN := bin | |
| SOURCE := source | |
| INCLUDE_PATHS := |