Skip to content

Instantly share code, notes, and snippets.

@VonHeikemen
VonHeikemen / nightowl.cuda-theme-syntax
Created March 2, 2019 15:32
sintax theme for CudaText.
{
"Lex_Id" : {
"Type" : 1,
"Styles" : "",
"CFont" : "#D6DEEB",
"CBack" : "",
"CBorder" : "",
"Border" : "0,0,0,0"
},
"Lex_Id1" : {
@VonHeikemen
VonHeikemen / webpackPluginPuppet.js
Last active January 17, 2019 10:14
Experimental webpack plugin to execute scripts using puppeteer
// based on egoist's work in @poi/plugin-puppet
// https://github.com/egoist/poi/tree/master/plugins/puppet
// npm install -D serve-static
const util = require('util');
const http = require('http');
const serveStatic = require('serve-static');
@VonHeikemen
VonHeikemen / .vimrc
Last active November 19, 2019 22:38
Vim config
" ============================================================================ "
" === DEPENDENCIES === "
" ============================================================================ "
" fzf - https://github.com/junegunn/fzf
" ripgrep - https://github.com/BurntSushi/ripgrep
" vim-plug - https://github.com/junegunn/vim-plug
" ============================================================================ "
" === EDITING OPTIONS === "
@VonHeikemen
VonHeikemen / .tmux.conf
Last active June 27, 2018 15:20
almost easy tmux config
# increase scroll-back history
set -g history-limit 5000
# Alt + c enters copy mode
bind-key -n M-c copy-mode
# Alt + arrows to navigate between panes
bind-key -n M-Up select-pane -U
bind-key -n M-Down select-pane -D
bind-key -n M-Left select-pane -L