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
# Windows thumbnail cache files | |
Thumbs.db | |
Thumbs.db:encryptable | |
ehthumbs.db | |
ehthumbs_vista.db | |
# Dump file | |
*.stackdump | |
# Folder config file |
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
{ | |
"window.title": "${activeEditorShort}", | |
"window.titleSeparator": " | ", | |
"window.menuBarVisibility": "toggle", | |
"window.titleBarStyle": "custom", | |
"window.zoomLevel": 0.5, | |
"workbench.startupEditor": "welcomePage", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.colorTheme": "SynthWave '84", |
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
/// Truncate | |
/// Sets the maximum number of rows the element will have | |
/// If the maximum line is exceeded, cut off the excess lines. | |
/// puts "..." at the end of the last line | |
/// @param {number} $max-line [2] - max line of paragraph | |
/// @example scss - truncate mixin | |
/// .text { | |
/// @include truncate(2); | |
/// } | |
@mixin truncate($max-line: 2) { |
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
root = true | |
[*] | |
indent_style = space | |
indent_size = 2 | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true | |
quote_type = single |
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
unbindallmousekeyboard | |
rate "786432" | |
fps_max "300" | |
cl_cmdrate "128" | |
cl_updaterate "128" | |
cl_interp "0.031" | |
cl_interp_ratio "2" | |
cl_cmdrate "128" | |
cl_updaterate "128" |