๐Ÿ”ง Where my dotfiles lives in harmony and peace, most of the time

๐Ÿ”ง Update terminal, zed, pre-commit

+20 -16
+16
.pre-commit-config.yaml
···
··· 1 + fail_fast: false 2 + 3 + repos: 4 + - repo: "https://github.com/pre-commit/pre-commit-hooks" 5 + rev: v6.0.0 6 + hooks: 7 + - id: trailing-whitespace 8 + - id: end-of-file-fixer 9 + - id: check-yaml 10 + - id: check-toml 11 + - id: check-json 12 + - id: check-executables-have-shebangs 13 + - id: check-shebang-scripts-are-executable 14 + - id: check-added-large-files 15 + - id: check-symlinks 16 + - id: destroyed-symlinks
+3 -1
terminal/bashrc
··· 1 - #!/bin/bash 2 3 # If not running interactively, don't do anything 4 [[ $- != *i* ]] && return
··· 1 + # Bash 2 + 3 + # shellcheck shell=bash 4 5 # If not running interactively, don't do anything 6 [[ $- != *i* ]] && return
+1
terminal/setup.sh
··· 15 htop 16 jq 17 nvtop 18 ripgrep 19 sheldon 20 shellcheck-bin
··· 15 htop 16 jq 17 nvtop 18 + prek-bin 19 ripgrep 20 sheldon 21 shellcheck-bin
-7
zed/keymap.json
··· 1 - // Zed keymap 2 - // 3 - // For information on binding keys, see the Zed 4 - // documentation: https://zed.dev/docs/key-bindings 5 - // 6 - // To see the default key bindings run `zed: open default keymap` 7 - // from the command palette. 8 [ 9 { 10 "context": "Editor",
··· 1 [ 2 { 3 "context": "Editor",
-8
zed/settings.json
··· 1 - // Zed settings 2 - // 3 - // For information on how to configure Zed, see the Zed 4 - // documentation: https://zed.dev/docs/configuring-zed 5 - // 6 - // To see all of Zed's default settings without changing your 7 - // custom settings, run `zed: open default settings` from the 8 - // command palette (cmd-shift-p / ctrl-shift-p) 9 { 10 "buffer_font_family": "JetBrainsMono Nerd Font", 11 "buffer_font_size": 14.0,
··· 1 { 2 "buffer_font_family": "JetBrainsMono Nerd Font", 3 "buffer_font_size": 14.0,