One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| #!/usr/bin/env bash | |
| git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done | |
| git fetch --all | |
| git pull --all |
| #!/bin/sh | |
| # Called by "git push" after it has checked the remote status, | |
| # but before anything has been pushed. | |
| # | |
| # If this script exits with a non-zero status nothing will be pushed. | |
| # | |
| # Steps to install, from the root directory of your repo... | |
| # 1. Copy the file into your repo at `.git/hooks/pre-push` | |
| # 2. Set executable permissions, run `chmod +x .git/hooks/pre-push` |
| --============================================================================== | |
| -- conky_orange.lua | |
| -- | |
| -- author : SLK | |
| -- version : v2011062101 | |
| -- license : Distributed under the terms of GNU GPL version 2 or later | |
| -- | |
| -- modified: me | |
| -- version : v20171027 | |
| -- notes : works on 4k screen. uses conky conf newer >v1.1 |
| ; The Expression Problem and my sources: | |
| ; http://stackoverflow.com/questions/3596366/what-is-the-expression-problem | |
| ; http://blog.ontoillogical.com/blog/2014/10/18/solving-the-expression-problem-in-clojure/ | |
| ; http://eli.thegreenplace.net/2016/the-expression-problem-and-its-solutions/ | |
| ; http://www.ibm.com/developerworks/library/j-clojure-protocols/ | |
| ; To begin demonstrating the problem, we first need some | |
| ; "legacy code" with datastructures and functionality: |
| {-# LANGUAGE NamedFieldPuns #-} | |
| -- The Expression Problem and my sources: | |
| -- http://stackoverflow.com/questions/3596366/what-is-the-expression-problem | |
| -- http://blog.ontoillogical.com/blog/2014/10/18/solving-the-expression-problem-in-clojure/ | |
| -- http://eli.thegreenplace.net/2016/the-expression-problem-and-its-solutions/ | |
| -- http://www.ibm.com/developerworks/library/j-clojure-protocols/ | |
| -- To begin demonstrating the problem, we first need some |
| object Main extends App { | |
| import math._ | |
| // The Expression Problem and my sources: | |
| // http://stackoverflow.com/questions/3596366/what-is-the-expression-problem | |
| // http://blog.ontoillogical.com/blog/2014/10/18/solving-the-expression-problem-in-clojure/ | |
| // http://eli.thegreenplace.net/2016/the-expression-problem-and-its-solutions/ | |
| // http://www.ibm.com/developerworks/library/j-clojure-protocols/ | |
| # GIT heart FZF | |
| # ------------- | |
| is_in_git_repo() { | |
| git rev-parse HEAD > /dev/null 2>&1 | |
| } | |
| fzf-down() { | |
| fzf --height 50% --min-height 20 --border --bind ctrl-/:toggle-preview "$@" | |
| } |
| let mapleader=" " | |
| """ Plugins -------------------------------- | |
| set surround | |
| set multiple-cursors | |
| set commentary | |
| set argtextobj | |
| set easymotion | |
| set textobj-entire | |
| set ReplaceWithRegister |