├── .github └── workflows │ └── gitleaks.yml ├── .gitignore ├── .gitmodules ├── README.md ├── ansible ├── hosts ├── linux.yml └── roles │ ├── bin │ └── tasks │ │ └── main.yml │ ├── dotfiles │ ├── tasks │ │ └── main.yml │ └── vars │ │ └── main.yml │ ├── fonts │ ├── handlers │ │ └── main.yml │ └── tasks │ │ ├── download.yml │ │ └── main.yml │ ├── packages │ └── tasks │ │ ├── corp.yml │ │ ├── main.yml │ │ ├── nix.yml │ │ ├── post-install.yml │ │ ├── releases.yml │ │ └── repos.yml │ └── system │ ├── files │ ├── betterlockscreen@.service │ ├── keyd.conf │ └── touchpad.conf │ └── tasks │ └── main.yml ├── assets ├── 2022-12-27_13-46.png ├── 2023-01-18_18-16.png ├── 2025-01-27-10.21.png └── screenshot.png ├── bin ├── autostart └── powermenu ├── config ├── .claude │ ├── agents │ │ └── ui-ux-reviewer.md │ └── commands │ │ ├── gh │ │ ├── pr-address.md │ │ ├── pr-create.md │ │ ├── pr-desc-gen.md │ │ ├── pr-desc-update.md │ │ └── pr-review.md │ │ ├── git │ │ └── commit.md │ │ ├── tdd │ │ ├── green.md │ │ ├── red.md │ │ └── refactor.md │ │ └── test │ │ └── unit-fix.md ├── .codex │ └── prompts │ │ ├── gh-pr-address.md │ │ ├── gh-pr-create.md │ │ ├── gh-pr-desc-gen.md │ │ ├── gh-pr-desc-update.md │ │ ├── gh-pr-review.md │ │ ├── git-commit.md │ │ ├── tdd-green.md │ │ ├── tdd-red.md │ │ └── tdd-refactor.md ├── .cursor │ ├── commands │ │ ├── gh │ │ │ ├── pr-address.md │ │ │ ├── pr-create.md │ │ │ ├── pr-desc-gen.md │ │ │ ├── pr-desc-update.md │ │ │ └── pr-review.md │ │ ├── git │ │ │ └── commit.md │ │ ├── tdd │ │ │ ├── green.md │ │ │ ├── red.md │ │ │ └── refactor.md │ │ └── test │ │ │ └── unit-fix.md │ └── mcp.json ├── aerospace │ └── aerospace.toml ├── ai │ └── commands │ │ ├── gh │ │ ├── pr-address.md │ │ ├── pr-create.md │ │ ├── pr-describe.md │ │ ├── pr-redescribe.md │ │ └── pr-review.md │ │ ├── git │ │ └── commit.md │ │ ├── tdd │ │ ├── green.md │ │ ├── red.md │ │ └── refactor.md │ │ └── test │ │ └── unit-fix.md ├── aria2 │ └── aria2.conf ├── awesome │ ├── config │ │ ├── keys.lua │ │ ├── layout.lua │ │ ├── rules.lua │ │ ├── signals.lua │ │ ├── theme.lua │ │ └── wibar.lua │ ├── constants.lua │ ├── rc.lua │ ├── utils │ │ ├── ibus.lua │ │ ├── init.lua │ │ ├── misc.lua │ │ ├── ui.lua │ │ └── volume.lua │ └── widgets │ │ ├── battery.lua │ │ ├── calendar.lua │ │ ├── init.lua │ │ └── volume.lua ├── bash │ ├── functions │ └── gh ├── betterlockscreen │ └── betterlockscreenrc ├── btop │ └── btop.conf ├── chromium │ └── extensions │ │ ├── vimium-options.json │ │ └── vimium_c.json ├── conda │ └── .condarc ├── gammastep │ └── config.ini ├── ghostty │ └── config ├── git │ ├── .gitconfig │ ├── .themes.gitconfig │ └── ignore ├── helix │ └── config.toml ├── hypr │ └── hyprland.conf ├── karabiner │ └── karabiner.json ├── kitty │ ├── kitty.conf │ ├── scrollback-pager │ │ └── nvim │ │ │ └── init.lua │ └── themes │ │ ├── catppuccin │ │ └── frappe.conf │ │ └── kanagawa.conf ├── lazydocker │ └── config.yml ├── lazygit │ └── config.yml ├── mise │ └── config.toml ├── mpv │ ├── input.conf │ └── mpv.conf ├── nvim │ ├── .gitignore │ ├── .neoconf.json │ ├── ftplugin │ │ └── http.lua │ ├── init.lua │ ├── lazy-lock.json │ ├── lazyvim.json │ ├── lua │ │ ├── config │ │ │ ├── autocmds.lua │ │ │ ├── keymaps.lua │ │ │ ├── lazy.lua │ │ │ └── options.lua │ │ └── plugins │ │ │ ├── coding.lua │ │ │ ├── colorscheme.lua │ │ │ ├── disabled.lua │ │ │ ├── editor.lua │ │ │ ├── explorer.lua │ │ │ ├── git.lua │ │ │ ├── lsp.lua │ │ │ ├── mini.lua │ │ │ ├── telescope.lua │ │ │ ├── treesitter.lua │ │ │ └── utils.lua │ ├── snippets │ │ └── ruby.json │ ├── spell │ │ └── en.utf-8.add │ └── stylua.toml ├── ohmyposh │ └── hnbnh.toml ├── picom │ └── picom.conf ├── rectangle │ └── RectangleConfig.json ├── ripgrep │ └── .ripgreprc ├── rofi │ ├── blurry.theme.rasi │ ├── config.rasi │ └── options.theme.rasi ├── skhd │ └── skhdrc ├── so │ ├── colors.toml │ └── config.yml ├── starship │ └── starship.toml ├── tmux │ ├── keybindings.conf │ ├── options.conf │ ├── plugins.conf │ └── tmux.conf ├── wallpapers │ ├── README.md │ ├── teal-liquid.jpg │ └── wolf-minimalist-wallpaper-1600×900.jpg ├── waybar │ └── config.jsonc ├── wezterm │ ├── colors.lua │ ├── icons.lua │ ├── utils.lua │ └── wezterm.lua ├── yabai │ ├── create-spaces.sh │ └── yabairc ├── yazi │ ├── keymap.toml │ ├── package.toml │ ├── theme.toml │ └── yazi.toml ├── yt-dlp │ └── config ├── zed │ ├── keymap.json │ ├── settings.json │ └── tasks.json ├── zellij │ ├── config.kdl │ └── layouts │ │ └── default.kdl └── zsh │ ├── .zimrc │ ├── .zshenv │ ├── .zshrc │ ├── aliases.zsh │ ├── functions.zsh │ ├── hnbnh.zsh │ └── zim.zsh ├── install.sh ├── nix-darwin ├── configuration.nix ├── flake.lock └── flake.nix ├── pacman.txt └── stylua.toml /.github/workflows/gitleaks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/.github/workflows/gitleaks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /ansible/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/hosts -------------------------------------------------------------------------------- /ansible/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/linux.yml -------------------------------------------------------------------------------- /ansible/roles/bin/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/roles/bin/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/dotfiles/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/roles/dotfiles/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/dotfiles/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/roles/dotfiles/vars/main.yml -------------------------------------------------------------------------------- /ansible/roles/fonts/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/roles/fonts/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/fonts/tasks/download.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/roles/fonts/tasks/download.yml -------------------------------------------------------------------------------- /ansible/roles/fonts/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/roles/fonts/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/packages/tasks/corp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/roles/packages/tasks/corp.yml -------------------------------------------------------------------------------- /ansible/roles/packages/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/roles/packages/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/packages/tasks/nix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/roles/packages/tasks/nix.yml -------------------------------------------------------------------------------- /ansible/roles/packages/tasks/post-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/roles/packages/tasks/post-install.yml -------------------------------------------------------------------------------- /ansible/roles/packages/tasks/releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/roles/packages/tasks/releases.yml -------------------------------------------------------------------------------- /ansible/roles/packages/tasks/repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/roles/packages/tasks/repos.yml -------------------------------------------------------------------------------- /ansible/roles/system/files/betterlockscreen@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/roles/system/files/betterlockscreen@.service -------------------------------------------------------------------------------- /ansible/roles/system/files/keyd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/roles/system/files/keyd.conf -------------------------------------------------------------------------------- /ansible/roles/system/files/touchpad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/roles/system/files/touchpad.conf -------------------------------------------------------------------------------- /ansible/roles/system/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/ansible/roles/system/tasks/main.yml -------------------------------------------------------------------------------- /assets/2022-12-27_13-46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/assets/2022-12-27_13-46.png -------------------------------------------------------------------------------- /assets/2023-01-18_18-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/assets/2023-01-18_18-16.png -------------------------------------------------------------------------------- /assets/2025-01-27-10.21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/assets/2025-01-27-10.21.png -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /bin/autostart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/bin/autostart -------------------------------------------------------------------------------- /bin/powermenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/bin/powermenu -------------------------------------------------------------------------------- /config/.claude/agents/ui-ux-reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.claude/agents/ui-ux-reviewer.md -------------------------------------------------------------------------------- /config/.claude/commands/gh/pr-address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.claude/commands/gh/pr-address.md -------------------------------------------------------------------------------- /config/.claude/commands/gh/pr-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.claude/commands/gh/pr-create.md -------------------------------------------------------------------------------- /config/.claude/commands/gh/pr-desc-gen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.claude/commands/gh/pr-desc-gen.md -------------------------------------------------------------------------------- /config/.claude/commands/gh/pr-desc-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.claude/commands/gh/pr-desc-update.md -------------------------------------------------------------------------------- /config/.claude/commands/gh/pr-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.claude/commands/gh/pr-review.md -------------------------------------------------------------------------------- /config/.claude/commands/git/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.claude/commands/git/commit.md -------------------------------------------------------------------------------- /config/.claude/commands/tdd/green.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.claude/commands/tdd/green.md -------------------------------------------------------------------------------- /config/.claude/commands/tdd/red.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.claude/commands/tdd/red.md -------------------------------------------------------------------------------- /config/.claude/commands/tdd/refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.claude/commands/tdd/refactor.md -------------------------------------------------------------------------------- /config/.claude/commands/test/unit-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.claude/commands/test/unit-fix.md -------------------------------------------------------------------------------- /config/.codex/prompts/gh-pr-address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.codex/prompts/gh-pr-address.md -------------------------------------------------------------------------------- /config/.codex/prompts/gh-pr-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.codex/prompts/gh-pr-create.md -------------------------------------------------------------------------------- /config/.codex/prompts/gh-pr-desc-gen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.codex/prompts/gh-pr-desc-gen.md -------------------------------------------------------------------------------- /config/.codex/prompts/gh-pr-desc-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.codex/prompts/gh-pr-desc-update.md -------------------------------------------------------------------------------- /config/.codex/prompts/gh-pr-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.codex/prompts/gh-pr-review.md -------------------------------------------------------------------------------- /config/.codex/prompts/git-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.codex/prompts/git-commit.md -------------------------------------------------------------------------------- /config/.codex/prompts/tdd-green.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.codex/prompts/tdd-green.md -------------------------------------------------------------------------------- /config/.codex/prompts/tdd-red.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.codex/prompts/tdd-red.md -------------------------------------------------------------------------------- /config/.codex/prompts/tdd-refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.codex/prompts/tdd-refactor.md -------------------------------------------------------------------------------- /config/.cursor/commands/gh/pr-address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.cursor/commands/gh/pr-address.md -------------------------------------------------------------------------------- /config/.cursor/commands/gh/pr-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.cursor/commands/gh/pr-create.md -------------------------------------------------------------------------------- /config/.cursor/commands/gh/pr-desc-gen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.cursor/commands/gh/pr-desc-gen.md -------------------------------------------------------------------------------- /config/.cursor/commands/gh/pr-desc-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.cursor/commands/gh/pr-desc-update.md -------------------------------------------------------------------------------- /config/.cursor/commands/gh/pr-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.cursor/commands/gh/pr-review.md -------------------------------------------------------------------------------- /config/.cursor/commands/git/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.cursor/commands/git/commit.md -------------------------------------------------------------------------------- /config/.cursor/commands/tdd/green.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.cursor/commands/tdd/green.md -------------------------------------------------------------------------------- /config/.cursor/commands/tdd/red.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.cursor/commands/tdd/red.md -------------------------------------------------------------------------------- /config/.cursor/commands/tdd/refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.cursor/commands/tdd/refactor.md -------------------------------------------------------------------------------- /config/.cursor/commands/test/unit-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.cursor/commands/test/unit-fix.md -------------------------------------------------------------------------------- /config/.cursor/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/.cursor/mcp.json -------------------------------------------------------------------------------- /config/aerospace/aerospace.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/aerospace/aerospace.toml -------------------------------------------------------------------------------- /config/ai/commands/gh/pr-address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/ai/commands/gh/pr-address.md -------------------------------------------------------------------------------- /config/ai/commands/gh/pr-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/ai/commands/gh/pr-create.md -------------------------------------------------------------------------------- /config/ai/commands/gh/pr-describe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/ai/commands/gh/pr-describe.md -------------------------------------------------------------------------------- /config/ai/commands/gh/pr-redescribe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/ai/commands/gh/pr-redescribe.md -------------------------------------------------------------------------------- /config/ai/commands/gh/pr-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/ai/commands/gh/pr-review.md -------------------------------------------------------------------------------- /config/ai/commands/git/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/ai/commands/git/commit.md -------------------------------------------------------------------------------- /config/ai/commands/tdd/green.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/ai/commands/tdd/green.md -------------------------------------------------------------------------------- /config/ai/commands/tdd/red.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/ai/commands/tdd/red.md -------------------------------------------------------------------------------- /config/ai/commands/tdd/refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/ai/commands/tdd/refactor.md -------------------------------------------------------------------------------- /config/ai/commands/test/unit-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/ai/commands/test/unit-fix.md -------------------------------------------------------------------------------- /config/aria2/aria2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/aria2/aria2.conf -------------------------------------------------------------------------------- /config/awesome/config/keys.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/awesome/config/keys.lua -------------------------------------------------------------------------------- /config/awesome/config/layout.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/awesome/config/layout.lua -------------------------------------------------------------------------------- /config/awesome/config/rules.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/awesome/config/rules.lua -------------------------------------------------------------------------------- /config/awesome/config/signals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/awesome/config/signals.lua -------------------------------------------------------------------------------- /config/awesome/config/theme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/awesome/config/theme.lua -------------------------------------------------------------------------------- /config/awesome/config/wibar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/awesome/config/wibar.lua -------------------------------------------------------------------------------- /config/awesome/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/awesome/constants.lua -------------------------------------------------------------------------------- /config/awesome/rc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/awesome/rc.lua -------------------------------------------------------------------------------- /config/awesome/utils/ibus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/awesome/utils/ibus.lua -------------------------------------------------------------------------------- /config/awesome/utils/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/awesome/utils/init.lua -------------------------------------------------------------------------------- /config/awesome/utils/misc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/awesome/utils/misc.lua -------------------------------------------------------------------------------- /config/awesome/utils/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/awesome/utils/ui.lua -------------------------------------------------------------------------------- /config/awesome/utils/volume.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/awesome/utils/volume.lua -------------------------------------------------------------------------------- /config/awesome/widgets/battery.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/awesome/widgets/battery.lua -------------------------------------------------------------------------------- /config/awesome/widgets/calendar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/awesome/widgets/calendar.lua -------------------------------------------------------------------------------- /config/awesome/widgets/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/awesome/widgets/init.lua -------------------------------------------------------------------------------- /config/awesome/widgets/volume.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/awesome/widgets/volume.lua -------------------------------------------------------------------------------- /config/bash/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/bash/functions -------------------------------------------------------------------------------- /config/bash/gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/bash/gh -------------------------------------------------------------------------------- /config/betterlockscreen/betterlockscreenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/betterlockscreen/betterlockscreenrc -------------------------------------------------------------------------------- /config/btop/btop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/btop/btop.conf -------------------------------------------------------------------------------- /config/chromium/extensions/vimium-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/chromium/extensions/vimium-options.json -------------------------------------------------------------------------------- /config/chromium/extensions/vimium_c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/chromium/extensions/vimium_c.json -------------------------------------------------------------------------------- /config/conda/.condarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/conda/.condarc -------------------------------------------------------------------------------- /config/gammastep/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/gammastep/config.ini -------------------------------------------------------------------------------- /config/ghostty/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/ghostty/config -------------------------------------------------------------------------------- /config/git/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/git/.gitconfig -------------------------------------------------------------------------------- /config/git/.themes.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/git/.themes.gitconfig -------------------------------------------------------------------------------- /config/git/ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/git/ignore -------------------------------------------------------------------------------- /config/helix/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/helix/config.toml -------------------------------------------------------------------------------- /config/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/hypr/hyprland.conf -------------------------------------------------------------------------------- /config/karabiner/karabiner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/karabiner/karabiner.json -------------------------------------------------------------------------------- /config/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/kitty/kitty.conf -------------------------------------------------------------------------------- /config/kitty/scrollback-pager/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/kitty/scrollback-pager/nvim/init.lua -------------------------------------------------------------------------------- /config/kitty/themes/catppuccin/frappe.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/kitty/themes/catppuccin/frappe.conf -------------------------------------------------------------------------------- /config/kitty/themes/kanagawa.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/kitty/themes/kanagawa.conf -------------------------------------------------------------------------------- /config/lazydocker/config.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/lazygit/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/lazygit/config.yml -------------------------------------------------------------------------------- /config/mise/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/mise/config.toml -------------------------------------------------------------------------------- /config/mpv/input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/mpv/input.conf -------------------------------------------------------------------------------- /config/mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/mpv/mpv.conf -------------------------------------------------------------------------------- /config/nvim/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/.gitignore -------------------------------------------------------------------------------- /config/nvim/.neoconf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/.neoconf.json -------------------------------------------------------------------------------- /config/nvim/ftplugin/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/ftplugin/http.lua -------------------------------------------------------------------------------- /config/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/init.lua -------------------------------------------------------------------------------- /config/nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/lazy-lock.json -------------------------------------------------------------------------------- /config/nvim/lazyvim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/lazyvim.json -------------------------------------------------------------------------------- /config/nvim/lua/config/autocmds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/lua/config/autocmds.lua -------------------------------------------------------------------------------- /config/nvim/lua/config/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/lua/config/keymaps.lua -------------------------------------------------------------------------------- /config/nvim/lua/config/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/lua/config/lazy.lua -------------------------------------------------------------------------------- /config/nvim/lua/config/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/lua/config/options.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/coding.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/lua/plugins/coding.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/colorscheme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/lua/plugins/colorscheme.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/disabled.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/lua/plugins/disabled.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/editor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/lua/plugins/editor.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/explorer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/lua/plugins/explorer.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/git.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/lua/plugins/git.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/lsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/lua/plugins/lsp.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/mini.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/lua/plugins/mini.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/telescope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/lua/plugins/telescope.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/lua/plugins/treesitter.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/lua/plugins/utils.lua -------------------------------------------------------------------------------- /config/nvim/snippets/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/snippets/ruby.json -------------------------------------------------------------------------------- /config/nvim/spell/en.utf-8.add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/spell/en.utf-8.add -------------------------------------------------------------------------------- /config/nvim/stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/nvim/stylua.toml -------------------------------------------------------------------------------- /config/ohmyposh/hnbnh.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/ohmyposh/hnbnh.toml -------------------------------------------------------------------------------- /config/picom/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/picom/picom.conf -------------------------------------------------------------------------------- /config/rectangle/RectangleConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/rectangle/RectangleConfig.json -------------------------------------------------------------------------------- /config/ripgrep/.ripgreprc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/rofi/blurry.theme.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/rofi/blurry.theme.rasi -------------------------------------------------------------------------------- /config/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/rofi/config.rasi -------------------------------------------------------------------------------- /config/rofi/options.theme.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/rofi/options.theme.rasi -------------------------------------------------------------------------------- /config/skhd/skhdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/skhd/skhdrc -------------------------------------------------------------------------------- /config/so/colors.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/so/colors.toml -------------------------------------------------------------------------------- /config/so/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/so/config.yml -------------------------------------------------------------------------------- /config/starship/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/starship/starship.toml -------------------------------------------------------------------------------- /config/tmux/keybindings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/tmux/keybindings.conf -------------------------------------------------------------------------------- /config/tmux/options.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/tmux/options.conf -------------------------------------------------------------------------------- /config/tmux/plugins.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/tmux/plugins.conf -------------------------------------------------------------------------------- /config/tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/tmux/tmux.conf -------------------------------------------------------------------------------- /config/wallpapers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/wallpapers/README.md -------------------------------------------------------------------------------- /config/wallpapers/teal-liquid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/wallpapers/teal-liquid.jpg -------------------------------------------------------------------------------- /config/wallpapers/wolf-minimalist-wallpaper-1600×900.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/wallpapers/wolf-minimalist-wallpaper-1600×900.jpg -------------------------------------------------------------------------------- /config/waybar/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/waybar/config.jsonc -------------------------------------------------------------------------------- /config/wezterm/colors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/wezterm/colors.lua -------------------------------------------------------------------------------- /config/wezterm/icons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/wezterm/icons.lua -------------------------------------------------------------------------------- /config/wezterm/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/wezterm/utils.lua -------------------------------------------------------------------------------- /config/wezterm/wezterm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/wezterm/wezterm.lua -------------------------------------------------------------------------------- /config/yabai/create-spaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/yabai/create-spaces.sh -------------------------------------------------------------------------------- /config/yabai/yabairc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/yabai/yabairc -------------------------------------------------------------------------------- /config/yazi/keymap.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/yazi/keymap.toml -------------------------------------------------------------------------------- /config/yazi/package.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/yazi/package.toml -------------------------------------------------------------------------------- /config/yazi/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/yazi/theme.toml -------------------------------------------------------------------------------- /config/yazi/yazi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/yazi/yazi.toml -------------------------------------------------------------------------------- /config/yt-dlp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/yt-dlp/config -------------------------------------------------------------------------------- /config/zed/keymap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/zed/keymap.json -------------------------------------------------------------------------------- /config/zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/zed/settings.json -------------------------------------------------------------------------------- /config/zed/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/zed/tasks.json -------------------------------------------------------------------------------- /config/zellij/config.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/zellij/config.kdl -------------------------------------------------------------------------------- /config/zellij/layouts/default.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/zellij/layouts/default.kdl -------------------------------------------------------------------------------- /config/zsh/.zimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/zsh/.zimrc -------------------------------------------------------------------------------- /config/zsh/.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/zsh/.zshenv -------------------------------------------------------------------------------- /config/zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/zsh/.zshrc -------------------------------------------------------------------------------- /config/zsh/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/zsh/aliases.zsh -------------------------------------------------------------------------------- /config/zsh/functions.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/zsh/functions.zsh -------------------------------------------------------------------------------- /config/zsh/hnbnh.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/zsh/hnbnh.zsh -------------------------------------------------------------------------------- /config/zsh/zim.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/config/zsh/zim.zsh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/install.sh -------------------------------------------------------------------------------- /nix-darwin/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/nix-darwin/configuration.nix -------------------------------------------------------------------------------- /nix-darwin/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/nix-darwin/flake.lock -------------------------------------------------------------------------------- /nix-darwin/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/nix-darwin/flake.nix -------------------------------------------------------------------------------- /pacman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/pacman.txt -------------------------------------------------------------------------------- /stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnbnh/dotfiles/HEAD/stylua.toml --------------------------------------------------------------------------------