mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-11 00:51:53 +00:00
* fix(ci): replace broad permissions with specific scopes in workflows
Replace read-all/write-all with minimum required permission scopes
across all GitHub Actions workflows to follow the principle of least
privilege (SonarCloud rule githubactions:S8234).
* fix(shell): use [[ instead of [ for conditional tests
Replace single brackets with double brackets in bash conditional
expressions across 14 files (28 changes). All scripts use bash
shebangs so [[ is safe everywhere (SonarCloud rule shelldre:S7688).
* fix(shell): add explicit return statements to functions
Add return 0 as the last statement in ~46 shell functions across
17 files that previously relied on implicit return codes
(SonarCloud rule shelldre:S7682).
* fix(shell): assign positional parameters to local variables
Replace direct $1/$2/$3 usage with named local variables in _log(),
msg(), msg_err(), msg_done(), msg_run(), msg_ok(), and array_diff()
(SonarCloud rule shelldre:S7679).
* fix(python): replace dict() constructor with literal
Use {} instead of dict() for empty dictionary initialization
(SonarCloud rule python:S7498).
* fix(shell): fix husky shebang and tolerate npm outdated exit code
* docs(shell): add function docstring comments
* fix(shell): fix heredoc indentation in x-sonarcloud
* feat(python): add ruff linter and formatter configuration
* fix(ci): align megalinter config with biome, ruff, and shfmt settings
* fix(ci): disable black and yaml-prettier in megalinter config
* chore(ci): update ruff-pre-commit to v0.15.0 and fix hook name
* fix(scripts): check for .git dir before skipping clone in install-fonts
* fix(shell): address code review issues in scripts and shared.sh
- Guard wezterm show-keys failure in create-wezterm-keymaps.sh
- Stop masking git failures with return 0 in install-cheat-purebashbible.sh
- Add missing shared.sh source in install-xcode-cli-tools.sh
- Replace exit 1 with return 1 in sourced shared.sh
* fix(scripts): address code review and security findings
- Guard wezterm show-keys failure in create-wezterm-keymaps.sh
- Stop masking git failures with return 0 in install-cheat-purebashbible.sh
- Add missing shared.sh source in install-xcode-cli-tools.sh
- Replace exit 1 with return 1 in sourced shared.sh
- Remove shell=True subprocess calls in x-git-largest-files.py
* style(shell): apply shfmt formatting and add args to pre-commit hook
* fix(python): suppress bandit false positives in x-git-largest-files
* fix(python): add nosemgrep suppression for check_output call
* feat(format): add prettier for YAML formatting
Install prettier, add .prettierrc.json config (200-char width, 2-space
indent, LF endings), .prettierignore, yarn scripts (lint:prettier,
fix:prettier, format:yaml), and pre-commit hook scoped to YAML files.
* style(yaml): apply prettier formatting
* fix(scripts): address remaining code review findings
- Python: use list comprehension to filter empty strings instead of
slicing off the last element
- create-wezterm-keymaps: write to temp file and mv for atomic updates
- install-xcode-cli-tools: fix shellcheck source directive path
* fix(python): sort imports alphabetically in x-git-largest-files
* fix(lint): disable PYTHON_ISORT in MegaLinter, ruff handles it
* chore(git): add __pycache__ to gitignore
* fix(python): rename ambiguous variable l to line (E741)
* style: remove trailing whitespace and blank lines
* style(fzf): apply shfmt formatting
* style(shell): apply shfmt formatting
* docs(plans): add design documents
* style(docs): add language specifier to fenced code block
* feat(lint): add markdown-table-formatter to dev tooling
Add markdown-table-formatter as a dev dependency with yarn scripts
(lint:md-table, fix:md-table) and a local pre-commit hook to
automatically format markdown tables on commit.
61 lines
1.6 KiB
Plaintext
61 lines
1.6 KiB
Plaintext
# name: 'Catppuccin Mocha'
|
|
# url: 'https://github.com/catppuccin/fish'
|
|
|
|
[light]
|
|
# preferred_background: eff1f5
|
|
fish_color_normal 4c4f69
|
|
fish_color_command 1e66f5
|
|
fish_color_param dd7878
|
|
fish_color_keyword 8839ef
|
|
fish_color_quote 40a02b
|
|
fish_color_redirection ea76cb
|
|
fish_color_end fe640b
|
|
fish_color_comment 8c8fa1
|
|
fish_color_error d20f39
|
|
fish_color_gray 9ca0b0
|
|
fish_color_selection --background=ccd0da
|
|
fish_color_search_match --background=ccd0da
|
|
fish_color_option 40a02b
|
|
fish_color_operator ea76cb
|
|
fish_color_escape e64553
|
|
fish_color_autosuggestion 9ca0b0
|
|
fish_color_cancel d20f39
|
|
fish_color_cwd df8e1d
|
|
fish_color_user 179299
|
|
fish_color_host 1e66f5
|
|
fish_color_host_remote 40a02b
|
|
fish_color_status d20f39
|
|
fish_pager_color_progress 9ca0b0
|
|
fish_pager_color_prefix ea76cb
|
|
fish_pager_color_completion 4c4f69
|
|
fish_pager_color_description 9ca0b0
|
|
|
|
[dark]
|
|
# preferred_background: 1e1e2e
|
|
fish_color_normal cdd6f4
|
|
fish_color_command 89b4fa
|
|
fish_color_param f2cdcd
|
|
fish_color_keyword cba6f7
|
|
fish_color_quote a6e3a1
|
|
fish_color_redirection f5c2e7
|
|
fish_color_end fab387
|
|
fish_color_comment 7f849c
|
|
fish_color_error f38ba8
|
|
fish_color_gray 6c7086
|
|
fish_color_selection --background=313244
|
|
fish_color_search_match --background=313244
|
|
fish_color_option a6e3a1
|
|
fish_color_operator f5c2e7
|
|
fish_color_escape eba0ac
|
|
fish_color_autosuggestion 6c7086
|
|
fish_color_cancel f38ba8
|
|
fish_color_cwd f9e2af
|
|
fish_color_user 94e2d5
|
|
fish_color_host 89b4fa
|
|
fish_color_host_remote a6e3a1
|
|
fish_color_status f38ba8
|
|
fish_pager_color_progress 6c7086
|
|
fish_pager_color_prefix f5c2e7
|
|
fish_pager_color_completion cdd6f4
|
|
fish_pager_color_description 6c7086
|