This file contains hidden or 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
#!/bin/sh | |
# git-fetch-log: Ultimate git fetch-log | |
# | |
# It shows the diferences of `local...remote` if both side exists and there | |
# are differences. Useful to find out what you have to do: `merge`, `rebase`, | |
# `push`, etc. The arguments passed to log. | |
# | |
# Place it somewhere on Your `$PATH` and execute by the `git fetch-log` | |
# command. | |
# |
This file contains hidden or 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
; tcmd_conemu.ahk: Persistent console for Total Commander via ConEmu | |
; | |
; Press Ctrl-Space to switch between Tcmd and ConEmu (the path is | |
; automatically synced). | |
; | |
; INSTALL | |
; AutoHotkey https://autohotkey.com/ | |
; Total Commander http://www.ghisler.com/download.htm | |
; ConEmu https://conemu.github.io/en/Downloads.html | |
; |
This file contains hidden or 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
# Simplify the similar aliases in .gitconfig by using variables instead of | |
# copying the same flags. | |
[alias] | |
flags = "!FLAG_LOG='--graph --decorate --find-renames --date-order'; \ | |
FLAG_DIFF='--patch --stat --ignore-blank-lines';" | |
glog = "!git flags; git log $FLAG_LOG --name-status" | |
gslog = "!git flags; git log $FLAG_LOG --stat" | |
slog = "!git flags; git log $FLAG_LOG --date=short --format='%C(auto)%h%C(auto)%d %C(bold blue)%ad %an%n %s%C(reset)'" | |
df = "!git flags; git diff $FLAG_DIFF" |
This file contains hidden or 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
" Don't forget to start cvim_server.py | |
" https://github.com/1995eaton/chromium-vim/blob/master/cvim_server.py | |
" Remember: sync in cVim does not updates gist, but overrides local settings. | |
let hintcharacters = "asdfghjkluiopqwer" | |
set nosmoothscroll | |
let barposition = "bottom" | |
let completionengines = ["google"] | |
" Default Google search locale. |
This file contains hidden or 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
VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Jul 30 2015 21:42:27) | |
MS-Windows 32-bit GUI version with OLE support | |
Included patches: 1-803 | |
Compiled by BimbaLaszlo | |
Huge version with GUI. Features included (+) or not (-): | |
+acl -footer +rightleft | |
+arabic +gettext/dyn +ruby/dyn | |
+autocmd -hangul_input +scrollbind | |
+balloon_eval +iconv/dyn +signs |
This file contains hidden or 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
SetCapsLockState AlwaysOff | |
; Global remap. | |
Capslock::Ctrl | |
#IfWinActive ahk_class TTOTAL_CMD | |
{ | |
; Disable remap in Tcmd. | |
CapsLock::Return | |
; Check exactly for CapsLock instead of Ctrl. |
NewerOlder