diff --git a/templates/.zshrc.j2 b/templates/.zshrc.j2 deleted file mode 100644 index d08f3c8..0000000 --- a/templates/.zshrc.j2 +++ /dev/null @@ -1,38 +0,0 @@ -# This file us auto-generated by ansible, do not change this file directly -# instead make changes to ~/.zshrc.personal which is loaded after this file - -# Setup some standard paths -export ANDROID_HOME=~/Library/Android/sdk -export PATH=${PATH}:${ANDROID_HOME}/tools -export PATH=${PATH}:${ANDROID_HOME}/platform-tools -export PATH=/usr/local/opt/imagemagick@6/bin:${PATH} - -export optflags="-Wno-error=implicit-function-declaration" -export LDFLAGS="-L/opt/homebrew/opt/libffi/lib" -export CPPFLAGS="-I/opt/homebrew/opt/libffi/include" -export PKG_CONFIG_PATH="/opt/homebrew/opt/libffi/lib/pkgconfig" - -# For pkg-config to find zlib you may need to set: -export PKG_CONFIG_PATH="${PKG_CONFIG_PATH} /opt/homebrew/opt/zlib/lib/pkgconfig" - -# ZSH setup -export ZSH=$HOME/.oh-my-zsh -ZSH_THEME="robbyrussell" -plugins=(git kubectl) -DISABLE_UNTRACKED_FILES_DIRTY="true" -ZSH_DISABLE_COMPFIX=true - -# Load personal pre oh-my-zsh init config which should be stored in ~/.zshrc.personal.before -# E.g. setting ZSH theme etc -if [ -f ~/.zshrc.personal.before ]; then . ~/.zshrc.personal.before; fi - -# Load Oh My Zsh -source $ZSH/oh-my-zsh.sh - -# Load personal ZSH config which should be stored in ~/.zshrc.personal.after -# Most ZSH config e.g. aliases etc goes here -if [ -f ~/.zshrc.personal.after ]; then . ~/.zshrc.personal.after; fi - -# Load asdf -. $HOME/.asdf/asdf.sh -. $HOME/.asdf/completions/asdf.bash \ No newline at end of file diff --git a/templates/vscode-keybindings.json.j2 b/templates/vscode-keybindings.json.j2 deleted file mode 100644 index 03e6c85..0000000 --- a/templates/vscode-keybindings.json.j2 +++ /dev/null @@ -1,85 +0,0 @@ -// Place your key bindings in this file to override the defaultsauto[] -[ - { - "key": "ctrl+a ctrl+5", - "command": "workbench.action.splitEditor" - }, - { - "key": "cmd+\\", - "command": "-workbench.action.splitEditor" - }, - { - "key": "ctrl+a o", - "command": "workbench.action.navigateEditorGroups" - }, - { - "key": "ctrl+a ctrl+'", - "command": "workbench.action.splitEditorDown" - }, - { - "key": "ctrl+a k", - "command": "workbench.action.focusAboveGroup" - }, - { - "key": "cmd+k cmd+up", - "command": "-workbench.action.focusAboveGroup" - }, - { - "key": "ctrl+a j", - "command": "workbench.action.focusBelowGroup" - }, - { - "key": "cmd+k cmd+down", - "command": "-workbench.action.focusBelowGroup" - }, - { - "key": "ctrl+a l", - "command": "workbench.action.focusRightGroup" - }, - { - "key": "cmd+k cmd+right", - "command": "-workbench.action.focusRightGroup" - }, - { - "key": "ctrl+a h", - "command": "workbench.action.focusLeftGroup" - }, - { - "key": "cmd+k cmd+left", - "command": "-workbench.action.focusLeftGroup" - }, - { - "key": "cmd+r", - "command": "workbench.action.openRecent" - }, - { - "key": "ctrl+a ctrl+l", - "command": "workbench.action.moveEditorToRightGroup" - }, - { - "key": "cmd+k shift+cmd+right", - "command": "-workbench.action.moveEditorRightInGroup" - }, - { - "key": "cmd+backspace", - "command": "-debug.removeBreakpoint", - "when": "breakpointsFocused && !breakpointSelected" - }, - { - "key": "ctrl+a ctrl+h", - "command": "workbench.action.moveEditorToLeftGroup" - }, - { - "key": "ctrl+a z", - "command": "workbench.action.toggleEditorWidths" - }, - { - "key": "ctrl+shift+w", - "command": "workbench.action.quickSwitchWindow" - }, - { - "key": "cmd+r", - "command": "-workbench.action.reloadWindow", - "when": "isDevelopment" - } -] \ No newline at end of file diff --git a/templates/vscode-settings.json.j2 b/templates/vscode-settings.json.j2 deleted file mode 100644 index c174030..0000000 --- a/templates/vscode-settings.json.j2 +++ /dev/null @@ -1,43 +0,0 @@ -{ - "breadcrumbs.enabled": false, - "cSpell.language": "en-GB", - "diffEditor.ignoreTrimWhitespace": false, - "editor.lineNumbers": "relative", - "editor.minimap.enabled": false, - "editor.tabSize": 2, - "elixirLS.fetchDeps": false, - "explorer.confirmDragAndDrop": false, - "files.associations": { - "*.html.leex": "html-eex", - "*.leex": "html-eex" - }, - "gitlens.menus": { - "editor": false, - "editorGroup": false, - "editorTab": false, - "explorer": false, - "scmGroup": false, - "scmItem": false - }, - "path-autocomplete.triggerOutsideStrings": true, - "ruby.codeCompletion": "rcodetools", - "ruby.format": "rubocop", - "ruby.intellisense": "rubyLocate", - "ruby.useLanguageServer": true, - "terminal.integrated.allowChords": false, - "typescript.tsserver.log": "verbose", - "typescript.updateImportsOnFileMove.enabled": "always", - "vim.smartRelativeLine": true, - "window.title": "${activeEditorLong}${separator}${rootName}", - "window.zoomLevel": 2, - "workbench.activityBar.visible": true, - "workbench.editor.closeEmptyGroups": false, - "workbench.editor.labelFormat": "short", - "workbench.editor.revealIfOpen": true, - "workbench.editor.showTabs": true, - "workbench.sideBar.location": "left", - "workbench.statusBar.visible": true, - "zenMode.fullScreen": false, - "zenMode.hideLineNumbers": false, - "zenMode.hideTabs": false -} \ No newline at end of file