Skip to content

Instantly share code, notes, and snippets.

@voxtex
voxtex / .ideavimrc
Last active August 5, 2020 17:03
.ideavimrc
imap jk <Esc>
set clipboard=unnamedplus
set gdefault
set hlsearch
set ignorecase
set incsearch
set relativenumber
set showcmd
set showmode
@voxtex
voxtex / README.md
Created September 23, 2015 22:47 — forked from nickbudi/README.md
Budi's Counter-Strike: Global Offensive config

Budi's CS:GO Config

This is my constantly updated CS:GO autoexec config.

Put the files autoexec.cfg and video.txt in ...\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg or take what you want from it and add to your autoexec config!

Launch Options

-novid -high -threads 4 -freq 144 -refresh 144 -tickrate 128 -nojoy -nod3d9ex +exec autoexec.cfg
@voxtex
voxtex / gist:11239483
Created April 24, 2014 02:31
Starting Gulpfile
var gulp = require('gulp'),
lp = require('gulp-load-plugins')(), // automatically load our plugins
_ = require('lodash');
function join(p1, p2) {
if(_.isArray(p2)) {
return _.map(p2, _.partial(join, p1));
}
return path.join(p1, p2 || '');
}
String.prototype.repeat = function(count) {
if (count < 1) return '';
var result = '', pattern = this.valueOf();
while (count > 0) {
if (count & 1) result += pattern;
count >>= 1, pattern += pattern;
}
return result;
};
String.prototype.repeat = function(count) {
if (count < 1) return '';
var result = '', pattern = this.valueOf();
while (count > 0) {
if (count & 1) result += pattern;
count >>= 1, pattern += pattern;
}
return result;
};
angular.element('#action-container').scope();
function testing() {
}