This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" ============================================================================ " | |
" === DEPENDENCIES === " | |
" ============================================================================ " | |
" fzf - https://github.com/junegunn/fzf | |
" ripgrep - https://github.com/BurntSushi/ripgrep | |
" vim-plug - https://github.com/junegunn/vim-plug | |
" ============================================================================ " | |
" === EDITING OPTIONS === " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Lex_Id" : { | |
"Type" : 1, | |
"Styles" : "", | |
"CFont" : "#D6DEEB", | |
"CBack" : "", | |
"CBorder" : "", | |
"Border" : "0,0,0,0" | |
}, | |
"Lex_Id1" : { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
# MIT License | |
# | |
# Copyright (c) 2019 Heiker Curiel | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HISTFILE="$HOME/.zsh_history" | |
HISTSIZE=50000 | |
SAVEHIST=10000 | |
## History command configuration | |
setopt extended_history # record timestamp of command in HISTFILE | |
setopt hist_expire_dups_first # delete duplicates first when HISTFILE size exceeds HISTSIZE | |
setopt hist_ignore_dups # ignore duplicated commands history list | |
setopt hist_ignore_space # ignore commands that start with space | |
setopt hist_verify # show command with history expansion to user before running it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Xft.dpi: 96 | |
Xft.antialias: true | |
Xft.hinting: true | |
Xft.rgba: rgb | |
Xft.autohint: false | |
Xft.hintstyle: hintslight | |
Xft.lcdfilter: lcddefault | |
XTerm*background: #DCE0DD | |
XTerm*foreground: #2F343F |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PLEASE READ THE MAN PAGE BEFORE EDITING THIS FILE! | |
# https://htmlpreview.github.io/?https://github.com/conformal/spectrwm/blob/master/spectrwm.html | |
# NOTE: all rgb color values in this file are in hex! see XQueryColor for examples | |
# workspace_limit = 22 | |
# focus_mode = default | |
# focus_close = previous | |
# focus_close_wrap = 1 | |
# focus_default = last | |
# spawn_position = next |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* compile: gcc -std=c99 -Wall `pkg-config --cflags --libs libnotify` -lnotify cmus-notify.c -o cmus-notify | |
* | |
* test case: cmus-notify status playing file path title hola artist qace album ok | |
* | |
* installation: | |
* - Set the status_display_program variable in cmus | |
* :set status_display_program=/path-to/cmus-notify | |
* | |
* - Save the changes using |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ENV=development | |
HOST=http://localhost:5000 |
OlderNewer