Skip to content

Commit 83198eb

Browse files
committed
Merge branch 'master' of github.com:DelvarWorld/configs
2 parents 556d837 + 4d56750 commit 83198eb

4 files changed

Lines changed: 38 additions & 21 deletions

File tree

.bashrc

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,7 @@ if [ -d "$GR_HOME" ]; then
944944
pathadd "${GR_HOME}/engineering/bin"
945945

946946
# default to aws env
947-
aws-environment || aws-environment development
947+
aws-environment > /dev/null || aws-environment development -l
948948

949949
# allow for pivotal prme command
950950
tracker-environment
@@ -1034,6 +1034,7 @@ function jgrep() {
10341034
}
10351035

10361036
if type "bat" > /dev/null 2>&1; then
1037+
alias ccat='/bin/cat'
10371038
alias cat='bat --theme=TwoDark'
10381039
else
10391040
echo 'bat not found'
@@ -1145,5 +1146,16 @@ if [ -d "$CHRUBY_PATH" ]; then
11451146
chruby 2.5.1
11461147
fi
11471148

1149+
MINI_CONDA_PATH="${HOME}/miniconda3/bin"
1150+
if [ -d "$MINI_CONDA_PATH" ]; then
1151+
pathadd "$MINI_CONDA_PATH"
1152+
fi
1153+
1154+
pathadd /Users/aray/miniconda3/bin:$PATH
1155+
11481156
# loads nvm bash_completion
11491157
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
1158+
1159+
# For docker builds
1160+
export GITHUB_PRIVATE_KEY="$(cat /Users/aray/.ssh/docker_gr_rsa)"
1161+

.gvimrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
" Fix for bug https://github.com/macvim-dev/macvim/issues/806#issuecomment-446551760
2+
macm Edit.Find.Use\ Selection\ for\ Find key=<nop>
3+

.vimrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ highlight ColorColumn guibg=#331111
3232
set colorcolumn=80
3333
set cursorline
3434

35+
set novisualbell
36+
3537
" Make the cursor a thin line (not a block) and color it differently in insert
3638
" and normal mode. Makes it WAY easier to see where the cursor is. This is the
3739
" most important thing in this file
@@ -298,6 +300,7 @@ nnoremap <Leader>rs vi{:sort<cr>
298300
" trim trailing whitespace
299301
noremap <Leader>sw :let _s=@/<Bar>:%s/\s\+$//e<Bar>:let @/=_s<Bar>:nohl<CR>
300302
303+
" See ~/.gvimrc
301304
" Execute VIM colon command under cursor with <⌘-e>
302305
nnoremap <D-e> yy:<C-r>"<backspace><cr>
303306

code/settings.json

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,23 @@
2020
"workbench.colorTheme": "rainbow",
2121
"indentRainbow.error_color": "",
2222

23-
"editor.renderWhitespace": "none",
24-
"workbench.panel.location": "right",
25-
"gitlens.advanced.messages": {
26-
"suppressShowKeyBindingsNotice": true
27-
},
28-
"cSpell.userWords": [
29-
"kase",
30-
"kases",
31-
"mixpanel"
32-
],
33-
"window.title": "${activeEditorMedium}${separator}${rootName}",
34-
"javascript.updateImportsOnFileMove.enabled": "always",
35-
"typescript.updateImportsOnFileMove.enabled": "always",
36-
"workbench.panel.location": "bottom",
37-
"breadcrumbs.enabled": true,
38-
"editor.formatOnSave": true,
39-
"editor.tabSize": 2,
40-
"editor.tabCompletion": true,
41-
"editor.snippetSuggestions": "top",
42-
"terminal.integrated.rendererType": "dom"
23+
"editor.renderWhitespace": "none",
24+
"workbench.panel.location": "right",
25+
"gitlens.advanced.messages": {
26+
"suppressShowKeyBindingsNotice": true
27+
},
28+
"cSpell.userWords": ["kase", "kases", "mixpanel"],
29+
"window.title": "${activeEditorMedium}${separator}${rootName}",
30+
"javascript.updateImportsOnFileMove.enabled": "always",
31+
"typescript.updateImportsOnFileMove.enabled": "always",
32+
"workbench.panel.location": "bottom",
33+
"breadcrumbs.enabled": true,
34+
"editor.formatOnSave": true,
35+
"editor.tabSize": 2,
36+
"editor.tabCompletion": true,
37+
"editor.snippetSuggestions": "top",
38+
"terminal.integrated.rendererType": "dom",
39+
"editor.tokenColorCustomizations": {
40+
"comments": "#d152ff"
41+
}
4342
}

0 commit comments

Comments
 (0)