clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

update dotfiles

sspaeti bf958359 e500a864

+21 -4
+1 -1
backup_dotfiles.sh
··· 4 4 cp ~/Library/ApplicationSupport/Code/User/keybindings.json $git/dotfiles/vscode/keybindings.json 5 5 cp ~/.vimrc $git/dotfiles/vim/vimrc 6 6 7 - brew bundle dump > $git/dotfiles/Brewfilee -f 7 + brew bundle dump > $git/dotfiles/Brewfile -f 8 8 9 9 source $venvs/dagster/bin/activate 10 10 pip freeze > $git/dotfiles/python/venvs/dagster.txt
+2 -1
vim/vimrc
··· 25 25 "plugs to intall 26 26 call plug#begin('~/.vim/bundle') 27 27 Plug 'christoomey/vim-system-copy' 28 - Plug 'valloric/youcompleteme' 28 + "Plug 'valloric/youcompleteme' 29 29 Plug 'http://github.com/tpope/vim-surround' " Surrounding ysw) 30 30 call plug#end() 31 + "install with :PlugInstall
+5 -1
vscode/keybindings.json
··· 143 143 "key": "ctrl+[Equal]", 144 144 "command": "workbench.action.focusActiveEditorGroup", 145 145 "when": "terminalFocus" 146 + }, 147 + { 148 + "key": "ctrl+[Minus]", 149 + "command": "workbench.action.closePanel" 146 150 } 147 - ] 151 + ]
+13 -1
vscode/settings.json
··· 202 202 ] 203 203 } 204 204 ], 205 + "vim.visualModeKeyBindings": [ 206 + { 207 + "before": [ 208 + "<leader>", 209 + "c" 210 + ], 211 + "commands": [ 212 + "editor.action.commentLine" 213 + ], 214 + "when": "editorTextFocus && !editorReadonly" 215 + } 216 + ], 205 217 "vim.normalModeKeyBindingsNonRecursive": [ 206 218 { 207 219 "before": [ ··· 228 240 "<C-f>": false 229 241 }, 230 242 "editor.lineNumbers": "relative" 231 - } 243 + }