Skip to content

Instantly share code, notes, and snippets.

View efvincent's full-sized avatar

Eric Vincent efvincent

View GitHub Profile
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"
" Blog_post:
" http://amix.dk/blog/post/19691#The-ultimate-Vim-configuration-on-Github
"
" Sections:
" -> Vundle Support
" -> General
" -> VIM user interface
" -> Colors and Fonts
@efvincent
efvincent / .gitignore
Created June 1, 2014 15:19
.gitignore
node_modules
dist
build
.tmp
.sass-cache
.classpath
.project
.settings
.idea/workspace.xml
.svn
@efvincent
efvincent / .bashrc
Last active March 30, 2017 22:28
my current .bashrc
# Normal Colors
Black='\e[0;30m' # Black
Red='\e[0;31m' # Red
Green='\e[0;32m' # Green
Yellow='\e[0;33m' # Yellow
Blue='\e[0;34m' # Blue
Purple='\e[0;35m' # Purple
Cyan='\e[0;36m' # Cyan
White='\e[0;37m' # White
@efvincent
efvincent / gvGetFile.js
Created May 1, 2014 14:28
input file directive
'use strict';
angular.module('udrApp')
.directive('gvGetFile', function ($log) {
return {
template: '<div></div>',
restrict: 'E',
replace: true,
scope: {
handleFiles: '&'
@efvincent
efvincent / .jshintrc
Created April 24, 2014 15:55
my jshint config file
{
"-W015": true,
"lastsemic": true,
"node": true,
"browser": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": false,
"eqeqeq": true,
@efvincent
efvincent / Preferences.sublime-settings
Last active August 29, 2015 14:00
Sublime Settings
{
"auto_complete_commit_on_tab": true,
"bold_folder_labels": true,
"draw_minimap_border": true,
"draw_white_space": "all",
"font_face": "Source Code Pro",
"font_size": 14,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages": [
@efvincent
efvincent / tl-debounce.js
Last active August 29, 2015 13:57 — forked from tommaitland/ng-debounce.js
Debounce for a textbox. Thanks to tommaitland, modified to not use "ng" prefix
angular.module('app', []).directive('tlDebounce', function($timeout) {
return {
restrict: 'A',
require: 'ngModel',
priority: 99,
link: function(scope, elm, attr, ngModelCtrl) {
if (attr.type === 'radio' || attr.type === 'checkbox') return;
elm.unbind('input');
@efvincent
efvincent / _.md
Created December 24, 2013 04:23
d3 table
@efvincent
efvincent / _.md
Created December 23, 2013 20:32
d3 date brush
@efvincent
efvincent / _.md
Created December 23, 2013 17:34
reddit base