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
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "ctrl+alt+p", | |
"command": "projectManager.listProjects" | |
}, | |
{ | |
"key": "shift+alt+p", | |
"command": "-projectManager.listProjects" | |
}, |
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
{ | |
"$help": "https://aka.ms/terminal-documentation", | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"actions": | |
[ | |
{ | |
"command": | |
{ | |
"action": "splitPane", | |
"split": "down", |
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
[General] | |
DefaultDesktop=1 | |
TaskbarScrollSwitching=1 | |
UseNativePrevNextDesktopSwitchingIfConflicting=0 | |
DesktopWrapping=1 | |
[Tooltips] | |
Enabled=0 | |
; One of LEFT, CENTER, RIGHT | |
PositionX=LEFT |
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
# For Linux machines | |
[user] | |
email = [email protected] | |
name = Hector Hurtarte | |
[diff] | |
external = git-diff-meld | |
[credential] |
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
{ | |
"extends": "eslint:recommended", | |
"env": { | |
"es6": true, | |
"node": true, | |
"browser": true, | |
"embertest": true | |
}, | |
"parserOptions": { | |
"sourceType": "module" |
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
# Alternate mappings for "page up" and "page down" to search the history | |
"\e[5~": history-search-backward | |
"\e[6~": history-search-forward | |
"\e[1;5C": forward-word # ctrl + right | |
"\e[1;5D": backward-word # ctrl + left |
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
@ECHO OFF | |
REM Configure your favorite diff program here. | |
SET DIFF="C:\Program Files (x86)\Meld\Meld.exe" | |
REM Subversion provides the paths we need as the last two parameters. | |
REM These are parameters 6 and 7 (unless you use svn diff -x, in | |
REM which case, all bets are off). | |
SET LEFT=%6 | |
SET RIGHT=%7 | |
REM Call the diff command (change the following line to make sense for | |
REM your diff program). |
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
unbind % # Remove default binding | |
# Cygwin stuff | |
# Make ctrl + left and ctrl + right move through next and previous word (requires some .inputrc stuff) | |
# set-window-option -g xterm-keys on | |
# See http://stackoverflow.com/questions/26435333/cygwin-tmux-on-windows-7-why-wont-tmux-use-the-current-path | |
# set-environment -g CHERE_INVOKING 1 | |
# Window opening and closing | |
bind-key -n C-t new-window -c "#{pane_current_path}" |
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
zend_extension=xdebug.so | |
# Default: 0 | |
# When this setting is set to 1, Xdebug will always attempt to start a remote debugging session | |
# and try to connect to a client, even if the GET/POST/COOKIE variable is not present | |
xdebug.remote_autostart = 1 | |
xdebug.remote_enable = 1 | |
xdebug.remote_host = localhost | |
xdebug.remote_port = 9000 |
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
[global_config] | |
title_transmit_bg_color = "#242424" | |
focus = system | |
title_transmit_fg_color = "#D4D4D4" | |
[keybindings] | |
close_window = <Ctrl>Q | |
split_horiz = <Alt>2 | |
full_screen = <Ctrl><Shift>F11 | |
close_term = <Ctrl>W | |
split_vert = <Alt>3 |
NewerOlder