Personal dotfiles for Linux, mostly for Nixpkgs/NixOS-based and Termux setups. Mirrored using GitLab's push mirroring feature. gitlab.com/andreijiroh-dev/dotfiles
linux dotfiles
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(global): update configs and readme as usual

Additions:
* Zed editor config files (keymaps and user-wide settings)

Changed:
* add glab CLI to .tool-versions for asdf
* some small config changes on btop
* update user-wide VS Code settings
* small edits to README

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.xyz>

+59 -8
+1 -1
.config/btop/btop.conf
··· 72 72 proc_gradient = True 73 73 74 74 #* If process cpu usage should be of the core it's running on or usage of the total available cpu power. 75 - proc_per_core = False 75 + proc_per_core = True 76 76 77 77 #* Show process memory as bytes instead of percent. 78 78 proc_mem_bytes = True
+14
.config/zed/keymap.json
··· 1 + [ 2 + { 3 + "bindings": { 4 + "ctrl-alt-q": "zed::Quit" // Ctrl-Q is reserved for Nano 5 + } 6 + }, 7 + { 8 + "context": "Workspace", 9 + "bindings": { 10 + "ctrl-shift-s": "workspace::Save", 11 + "ctrl-alt-s": "workspace::SaveAs" 12 + } 13 + } 14 + ]
+35
.config/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 the `open default settings` command 8 + // from the command palette or from `Zed` application menu. 9 + { 10 + "features": { 11 + "inline_completion_provider": "none", 12 + "copilot": false 13 + }, 14 + "ui_font_size": 16, 15 + "buffer_font_size": 16, 16 + "theme": { 17 + "mode": "dark", 18 + "light": "One Light", 19 + "dark": "Github Dark" 20 + }, 21 + "git": { 22 + "git_gutter": "tracked_files", 23 + "gutter_debounce": 5, 24 + "inline_blame": { 25 + "enabled": true, 26 + "delay_ms": 3000 27 + } 28 + }, 29 + "toolbar": { 30 + "breadcrumbs": true, 31 + "selections_menu": true, 32 + "quick_actions": true 33 + }, 34 + "base_keymap": "VSCode" 35 + }
+1
.tool-versions
··· 2 2 deno 1.44.1 3 3 direnv 2.34.0 4 4 python 3.12.3 5 + glab 1.43.0
+6 -6
.vscode/settings.json
··· 23 23 { 24 24 "ignoreCase": true, 25 25 "prefix": "LAUNCHPAD-", 26 - "url": "https://mau.dev/andreijiroh.dev/launchpad/-/issues/<num>" 27 - }, 28 - { 29 - "prefix": "IN-LAUNCHPAD-", 30 - "url": "https://ajhalili2006.jetbrains.space/p/launchpad/issues/<num>" 26 + "url": "https://youtrack.andreijiroh.xyz/issue/LAUNCHPAD-<num>" 31 27 } 32 28 ], 33 29 "gitlens.defaultTimeFormat": "HH:mm", 34 30 "gitlens.defaultDateShortFormat": "YYYY-MM-D", 35 - "gitlens.defaultDateFormat": "YYYY-MM-D HH:mm" 31 + "gitlens.defaultDateFormat": "YYYY-MM-D HH:mm", 32 + "shellcheck.customArgs": [ 33 + "--external-sources", 34 + "-x" 35 + ] 36 36 }
+2 -1
README.md
··· 6 6 ## Quick deploy 7 7 8 8 ```bash 9 - curl -fsSL https://scripts.andreijiroh.eu.org/dotfiles/setup.sh | bash - 9 + # Working on it soon. 10 + curl -fsSL https://scripts.andreijiroh.xyz/dotfiles/setup.sh | bash - 10 11 ``` 11 12 12 13 ## Available Git mirrors