Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
git/gitconfig.symlink
secrets
group_vars/all.yaml
2 changes: 2 additions & 0 deletions ansible.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[defaults]
inventory = inventory.ini
46 changes: 0 additions & 46 deletions brew.sh

This file was deleted.

File renamed without changes.
3 changes: 3 additions & 0 deletions fish/config.fish → files/fish/config.fish
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,6 @@ set -g fish_user_paths "/usr/local/sbin" $fish_user_paths

# Node
set -gx NODE_ENV development

# NVIM
alias nvim-lazy "NVIM_APPNAME='nvim-lazyvim' nvim"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion git/.gitconfig → files/git/.gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
ls = log --pretty=format:'%C(yellow)%h %C(blue)%ad%C(red)%d %C(reset)%s%C(green) [%cn]' --decorate --date=relative

# Remove branches that have already been merged with main.
# a.k.a. delete merged
# a.k.a. 'delete merged'
dm = "!git branch --merged | grep -v '\\*' | xargs -n 1 git branch -d"

# stop work and commit everything to a wip commit
Expand Down
File renamed without changes.
4 changes: 4 additions & 0 deletions vscode/keybindings.json → files/vscode/keybindings.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,5 +163,9 @@
"key": "alt+cmd+c",
"command": "-copyFilePath",
"when": "!editorFocus"
},
{
"key": "shift+cmd+e",
"command": "workbench.files.action.focusFilesExplorer"
}
]
25 changes: 9 additions & 16 deletions vscode/settings.json → files/vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// Place your settings in this file to overwrite the default settings
{
"chat.agent.enabled": false,
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.lineHeight": 2.5,
"editor.fontLigatures": true,
"editor.rulers": [120],
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
// "explorer.openEditors.visible": 0,
"terminal.integrated.fontSize": 13,
"extensions.autoUpdate": true,
"files.exclude": {
Expand All @@ -16,13 +16,11 @@
"**/.hg": true,
"**/.DS_Store": true
},
"git.autofetch": true,
"git.autofetch": false,
"diffEditor.ignoreTrimWhitespace": false,
// "workbench.settings.editor": "json",
"workbench.panel.defaultLocation": "right",
"extensions.ignoreRecommendations": true,
"git.path": "/opt/homebrew/bin/git",
"githubPullRequests.fileListLayout": "tree",
"editor.minimap.enabled": false,
"workbench.editor.showTabs": "single",
"terminal.integrated.lineHeight": 1.8,
Expand All @@ -38,11 +36,8 @@
"cSpell.userWords": ["colour", "marvellous", "serialised"],
"editor.renderWhitespace": "all",
"git.mergeEditor": false,
"githubPullRequests.pullBranch": "never",
"workbench.editor.enablePreview": false,
"todo-tree.highlights.useColourScheme": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"githubPullRequests.notifications": "pullRequests",
"editor.stickyScroll.enabled": false,
"indentRainbow.colors": [
"rgba(53, 52, 53,0.15)",
Expand All @@ -59,22 +54,20 @@
"workbench.sideBar.location": "right",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"cSpell.enableFiletypes": ["tex"],
"sonarlint.focusOnNewCode": true,
"sonarlint.pathToNodeExecutable": "/Users/robertrhoades/.nvm/versions/node/v20.16.0/bin/node",
"scm.showHistoryGraph": false,
"markiscodecoverage.searchCriteria": "coverage/ngv/lcov*.info",
"window.autoDetectColorScheme": true,
"workbench.preferredLightColorTheme": "Vitesse Light Soft",
"workbench.preferredDarkColorTheme": "Panda Syntax",
"workbench.preferredLightColorTheme": "Rosé Pine",
"workbench.preferredDarkColorTheme": "Rosé Pine",
"symbols.hidesExplorerArrows": false,
"breadcrumbs.enabled": false,
"workbench.editor.editorActionsLocation": "titleBar",
"markiscodecoverage.coverageThreshold": 85,
"vscode-pets.petSize": "small",
"task.allowAutomaticTasks": "on",
"debug.javascript.autoAttachFilter": "disabled",
"chat.commandCenter.enabled": false,
"workbench.navigationControl.enabled": false,
"window.zoomLevel": 0.25
"window.zoomLevel": 0.25,
"window.commandCenter": false,
"workbench.iconTheme": "symbols",
"chat.detectParticipant.enabled": false,
"chat.disableAIFeatures": true
}
3 changes: 3 additions & 0 deletions group_vars/all.yaml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
git_name: foo
git_email: foo@example.com
31 changes: 0 additions & 31 deletions install

This file was deleted.

1 change: 1 addition & 0 deletions inventory.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
localhost ansible_connection=local ansible_python_interpreter=/usr/bin/python3
7 changes: 0 additions & 7 deletions nvm.sh

This file was deleted.

Loading