Skip to content

Instantly share code, notes, and snippets.

View taksenov's full-sized avatar
🤖
Make Algorithms Great Again

taksenov

🤖
Make Algorithms Great Again
View GitHub Profile
@taksenov
taksenov / vscode settings
Created May 17, 2018 07:30
Настройки VSCode
{
"workbench.colorTheme": "Monokai Dimmed",
"window.zoomLevel": 0,
"workbench.statusBar.visible": true,
// Управляет размером шрифта в пикселях.
"editor.fontSize": 18,
// Подсветка TODOs
"todohighlight.isEnable": true,
"todohighlight.isCaseSensitive": true,
"todohighlight.keywords": [
@taksenov
taksenov / .editorconfig
Created November 28, 2017 11:24
My .editorconfig file
root = true
[*]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
charset = utf-8
@taksenov
taksenov / gulpfile.js
Created November 13, 2014 11:44
Скрипт для запуска livereloada средствами gulp
/**
* Created by taksenov on 12.09.2014.
*/
'use strict';
var gulp = require('gulp'),
livereload = require('gulp-livereload'),
connect = require('gulp-connect');
gulp.task('connect', function() {