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
# | |
# Project specific excludes | |
# | |
tomcat | |
# | |
# Default excludes | |
# |
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
# This old bashrc is pretty much deprecated by now. | |
# .bashrc | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# User specific aliases and functions |
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
" this helped me to get right-mouse-click to work as paste | |
set mouse=r | |
" settings for vim | |
syntax on | |
set ruler | |
set background=dark | |
" completion in command line |
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
# Configuration file for dircolors, a utility to help you set the | |
# LS_COLORS environment variable used by GNU ls with the --color option. | |
# Copyright (C) 1996, 1999-2010 Free Software Foundation, Inc. | |
# Copying and distribution of this file, with or without modification, | |
# are permitted provided the copyright notice and this notice are preserved. | |
# The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the | |
# slackware version of dircolors) are recognized but ignored. | |
# Below, there should be one TERM entry for each termtype that is colorizable | |
TERM Eterm | |
TERM ansi |
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
[credential] | |
helper = manager | |
# This is Git's per-user configuration file. | |
[user] | |
# Please adapt and uncomment the following lines: | |
name = <your name> | |
email = <your@email> | |
[color] | |
ui = true |
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
#!/bin/bash | |
startdir=`pwd` | |
# # find all the LEAF directories that don't have .git somewhere along the path | |
# selection of LEAFs is done in the awk part | |
# the output of find is read line by line, assuming filenames don't have newlines | |
# `find -print0` wouldn't work, as this would screw up the awk part | |
find . -not \( -name .git -prune \) -type d -print | sort -r | awk 'a!~"^"$0{a=$0;print}' | sort | while read -d $'\n' file | |
do | |
echo "Going to -> $file" |
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
$ scoop list | |
Installed apps: | |
7zip 19.00 | |
adopt11-hotspot 11.0.6-10 [java] | |
adopt8-hotspot 8u212-b03 [java] | |
ant 1.10.7 | |
aria2 1.34.0-1 | |
clink 0.4.9 | |
concfg 0.2020.03.15 |
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
# Taken from: https://github.com/bobthecow/git-flow-completion/blob/master/git-flow-completion.bash | |
source ~/git-flow-completion.bash | |
if [[ -n "${ConEmuPID}" ]]; then | |
PS1="$PS1\[\e]9;9;\"\w\"\007\e]9;12\007\]" | |
fi | |
# This is used to start ssh-agent once when git-bash is started. |
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
{ | |
"fullscreen": false, | |
"command_history_length": 50, | |
"screen_buffer_size": "120x200", | |
"window_size": "120x50", | |
"cursor_size": "small", | |
"font_face": "Lucida Console", | |
"font_weight": 400, | |
"font_size": "0x14", | |
"font_true_type": true, |
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
{ | |
"fullscreen": false, | |
"command_history_length": 50, | |
"screen_buffer_size": "120x200", | |
"window_size": "120x50", | |
"cursor_size": "small", | |
"font_face": "Lucida Console", | |
"font_weight": 400, | |
"font_size": "0x14", | |
"font_true_type": true, |
OlderNewer