Skip to content

Instantly share code, notes, and snippets.

View mikedfunk's full-sized avatar

Mike Funk mikedfunk

View GitHub Profile
@romainl
romainl / tags.md
Last active March 25, 2022 07:00
Tags

Tags

Setup

Tell Vim to look for tags files:

  • in the directory of the current file,
  • in the working directory,
  • and in every parent directory, recursively,
@romainl
romainl / javascript_deep_dive.md
Created October 7, 2017 19:28 — forked from faressoft/javascript_deep_dive.md
JavaScript Deep Dive to Crack The JavaScript Interviews
@cognitivegears
cognitivegears / searchresults.md
Last active October 25, 2016 02:01
Using Search Results Window with Unite and Anzu

Synopsis

With Unite and Anzu (and a little vimscript) it is possible to create a window showing all matching search results that appears automatically when searching.

See Search Results Window with Unite and Anzu for the code or below for a demonstration.

Search Windows

Usage

@ankurk91
ankurk91 / github_gpg_key.md
Last active April 9, 2024 16:34
Signing git commits using GPG (Ubuntu/Mac)

Github : Signing commits using GPG (Ubuntu/Mac) 🔐

  • Do you have an Github account ? If not create one.
  • Install required tools
  • Latest Git Client
  • gpg tools
# Ubuntu
sudo apt-get install gpa seahorse
# MacOS with https://brew.sh/
{
"libs":[
"browser",
"chai",
"ecma5",
"ecma6",
"jquery",
"underscore"
],
"plugins": {
@romainl
romainl / _rnb.md
Last active August 12, 2021 21:56
RNB, a Vim colorscheme template
@kattrali
kattrali / steps.md
Last active October 22, 2017 15:33
Configuring profanity.im for Hipchat on OS X

Configuring profanity.im for Hipchat on OS X

Installation

Easy

brew install profanity

  • The latest build available today via homebrew is 0.4.4 (which means no support for /occupants pane in rooms), and it does not support desktop notifications.
@romainl
romainl / deprecation.md
Last active February 24, 2022 02:42
Idiomatic vimrc
@xu-li
xu-li / laravel_orm_standalone.php
Last active August 29, 2015 14:04
Using laravel ORM alone
<?php
// composer.json
/*
{
"require": {
"illuminate/database": "*"
}
}
*/
@scrooloose
scrooloose / open_multiple.vim
Last active March 5, 2016 18:28
nerdtree plugin to open a visual selection of files
if exists("g:loaded_nerdtree_open_multiple")
finish
endif
let g:loaded_nerdtree_open_multiple=1
vnoremap <buffer> o :call <SID>OpenMultiple()<cr>
function! s:OpenMultiple() range
let curLine = a:firstline
while curLine <= a:lastline