Skip to content

Instantly share code, notes, and snippets.

View coramuirgen's full-sized avatar

Cora Muirgen coramuirgen

View GitHub Profile
@coramuirgen
coramuirgen / vim_colorscheme_convert_terminal.rb
Last active January 24, 2019 02:47 — forked from metalelf0/neovim_colorscheme_patcher.rb
Convert vim colorscheme to terminal colors
#!/usr/bin/env ruby
class VimColorscheme
attr_accessor :file_path
def initialize(file_path)
@file_path = file_path
end
@coramuirgen
coramuirgen / vimvixen_style.css
Created April 29, 2018 19:50
VimVixen css styles
.vimvixen-console-frame {
margin: 0;
padding: 2px;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
position: fixed;
z-index: 2147483647;
border: none;
@coramuirgen
coramuirgen / vimvixen_current.json
Last active July 14, 2018 00:46
VimVixen current JSON settings
{
"keymaps": {
"0": { "type": "scroll.home" },
";": { "type": "command.show" },
"o": { "type": "command.show.open", "alter": false },
"O": { "type": "command.show.open", "alter": true },
"t": { "type": "command.show.tabopen", "alter": false },
"T": { "type": "command.show.tabopen", "alter": true },
"w": { "type": "command.show.winopen", "alter": false },
"W": { "type": "command.show.winopen", "alter": true },
@coramuirgen
coramuirgen / TreeStyleTab_style_notes.md
Last active July 20, 2018 20:10
TreeStyleTab complete styling replacement css

Prerequisite Settings for TreeStyleTab

  • Complete styling replacement (Theme: No Decoration)

Colors

Currently referencing css output from Pywal

  • Colors css can be imported in userContent.css.
  • Currently using a gold accent for selected tab and shadows regardless of colorscheme, looks good on light and dark colorschemes
@coramuirgen
coramuirgen / wasavi.md
Last active November 18, 2017 19:38
wasavi options (firefox add-ons 57+)

wasavi settings found in Options page of Add-In

exrc

" exrc for wasavi
set nolaunchbell
set noerrorbells

font family

Keybase proof

I hereby claim:

  • I am coramuirgen on github.
  • I am coramuirgen (https://keybase.io/coramuirgen) on keybase.
  • I have a public key ASALDxWyMbGTOjMFQMIFGKO0UN0uFR79FvugwRSCPI_BPQo

To claim this, I am signing this object:

@coramuirgen
coramuirgen / surfingkeys_test.js
Created August 30, 2017 23:18
surfingkeys_test
// Unmap undesired defaults
var unmaps = [ "sb" , "sw", "ob"
, "ow" , "cp", ";cp"
, ";ap", "spa", "spb"
, "spd", "sps", "spc"
, "spi", "sfr", "zQ"
, "zz" , "zR", "ab"
, "Q" , "q", "ag"
, "af"
//▔▔▔▔▔▔▔▔▔▔
// ➤ NOTES
//▁▁▁
//
//
// Vivaldi keyboard shortcuts are preferred when they need to:
// ● work on browser chrome windows :- always available
// ● happen in an independent process, not blocked by page events :- faster, snappier
//
// Surfingkeys keyboard shortcuts are preferred otherwise as they:
@coramuirgen
coramuirgen / 0_reuse_code.js
Created May 8, 2016 15:03
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@coramuirgen
coramuirgen / called by prepareinput.vbs
Last active July 5, 2016 09:10
called by prepareinput
Public Function PrepareEmpty(inputrecords As QueryableRecords, storagemode As StorageModes) As QueryableRecords
If storagemode = StorageModes.DirectModel Then
Set inputrecords = ModelRecords.CreateEmpty
ElseIf Var.Make(storagemode).OneOf(StorageModes.VirtualRecordset, StorageModes.XMLFileStream) Then
Set inputrecords = AdoRecords.CreateEmpty
End If
Set PrepareEmpty = inputrecords