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
<keymap version="1" name="Default for KDE copy" parent="Default for KDE"> | |
<action id="CollapseAll"> | |
<keyboard-shortcut first-keystroke="ctrl subtract" /> | |
</action> | |
<action id="CollapseExpandableComponent"> | |
<keyboard-shortcut first-keystroke="shift enter" /> | |
<keyboard-shortcut first-keystroke="ctrl subtract" /> | |
</action> | |
<action id="CollapseRegion"> | |
<keyboard-shortcut first-keystroke="ctrl subtract" /> |
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
# 0 is too far from ` ;) | |
set -g base-index 1 | |
# Automatically set window title | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
#set -g default-terminal screen-256color | |
set -g status-keys vi | |
set -g history-limit 10000 |
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 | |
# debug | |
#set -x | |
# abort if any error occured | |
set -e | |
# raise an error when an undefined variable has been used | |
set -u | |
# abort when a pipe failed = bash only: doesn't work in POSIX sh | |
if [ "${BASH:-}" = '/bin/bash' ]; then set -o pipefail; fi |
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
git ls-files --ignored --exclude-standard | sed 's/.*/"&"/' | xargs git rm -r --cached |