Skip to content

Commit

Permalink
refactor(chezmoi): logical groupings and updates (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
sylus authored Feb 5, 2024
1 parent 6e31e82 commit 1ee791b
Show file tree
Hide file tree
Showing 104 changed files with 2,419 additions and 1,388 deletions.
95 changes: 0 additions & 95 deletions .chezmoi.toml.tmpl

This file was deleted.

22 changes: 0 additions & 22 deletions .chezmoiignore

This file was deleted.

12 changes: 0 additions & 12 deletions .chezmoiremove

This file was deleted.

1 change: 1 addition & 0 deletions .chezmoiroot
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
home
14 changes: 0 additions & 14 deletions .chezmoiscripts/run_once_after_90-configure-linux.sh.tmpl

This file was deleted.

47 changes: 0 additions & 47 deletions .chezmoiscripts/run_once_after_90-configure-vscode.sh.tmpl

This file was deleted.

51 changes: 0 additions & 51 deletions .chezmoiscripts/run_once_before_10-install-linux.sh.tmpl

This file was deleted.

39 changes: 0 additions & 39 deletions .chezmoiscripts/run_onchange_after_90-post-darwin.sh.tmpl

This file was deleted.

2 changes: 1 addition & 1 deletion .chezmoiversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.29.4
2.42.3
7 changes: 7 additions & 0 deletions .codespell-ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# ~/.local/share/chezmoi/.codespell-ignore
# =============================================================================
# List of certain words to ignore.
#
# Reference: https://github.com/codespell-project/codespell

iterm
44 changes: 26 additions & 18 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,40 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.231.0/containers/ubuntu
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-dockerfile
{
"name": "Ubuntu",
"build": {
"dockerfile": "Dockerfile",
// Update 'VARIANT' to pick an Ubuntu version: hirsute, focal, bionic
// Use hirsute or bionic on local arm64/Apple Silicon.
"args": { "VARIANT": "jammy" }
},

// Set *default* container specific settings.json values on container create.
"settings": {},

// Add the IDs of extensions you want installed when the container is created.
"extensions": [],
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
// Install common utilities
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": "true",
"configureZshAsDefaultShell": "true",
"installOhMyZsh": true,
"upgradePackages": "true"
}
},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "uname -a",
// Uncomment the next line to run commands after the container is created.
// "postCreateCommand": "cat /etc/os-release",

// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode",
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
"settings": {},
"extensions": [
"eamodio.gitlens"
]
}
},

"features": {
"git": "os-provided",
"github-cli": "latest",
"sshd": "latest"
}
// Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root.
"remoteUser": "vscode"
}
10 changes: 10 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# ~/.local/share/chezmoi/.dockerignore
# =============================================================================
# Used to exclude files and directories from the build context.
#
# Reference: https://docs.docker.com/engine/reference/builder/#dockerignore-file

*
!home
!.chezmoi*
!install.sh
22 changes: 22 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# -*-mode:ini-*- vim:ft=dosini

# ~/.local/share/chezmoi/.editorconfig
# =============================================================================
# Helps maintaining a consistent coding style between different editors.
#
# Reference: https://EditorConfig.org

# Define this as the top-most EditorConfig file.
root = true

[*]
end_of_line = lf
insert_final_newline = true
indent_style = space
tab_width = 8
ident_size = 4
charset = utf-8
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false
Loading

0 comments on commit 1ee791b

Please sign in to comment.