├── .gitignore ├── 2024-04-28.code-profile ├── README.md ├── Stylus June 18.json ├── config ├── bat │ ├── config │ └── themes │ │ └── tokyonight_night.tmTheme ├── btop │ ├── btop.conf │ ├── btop.log │ └── themes │ │ ├── catppuccin_frappe.theme │ │ ├── catppuccin_latte.theme │ │ ├── catppuccin_macchiato.theme │ │ ├── catppuccin_mocha.theme │ │ └── tokyo-night.theme ├── gh │ ├── config.yml │ └── hosts.yml ├── iterm2 │ └── AppSupport ├── karabiner │ ├── automatic_backups │ │ ├── karabiner_20230106.json │ │ ├── karabiner_20230220.json │ │ ├── karabiner_20230318.json │ │ ├── karabiner_20240122.json │ │ ├── karabiner_20240127.json │ │ ├── karabiner_20240220.json │ │ ├── karabiner_20240221.json │ │ ├── karabiner_20240224.json │ │ ├── karabiner_20240226.json │ │ ├── karabiner_20240229.json │ │ ├── karabiner_20240403.json │ │ └── karabiner_20240424.json │ └── karabiner.json ├── kitty │ ├── kitty.conf │ ├── scroll_mark.py │ ├── search.py │ └── tab_bar.disabled.py ├── linearmouse │ └── linearmouse.json ├── lvim │ ├── config.lua │ └── lua │ │ ├── emmet.lua │ │ ├── keymaps.lua │ │ ├── line.lua │ │ └── plugins.lua ├── nvim │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ └── bug_report.md │ │ ├── pull_request_template.md │ │ └── workflows │ │ │ └── stylua.yml │ ├── .gitignore │ ├── .stylua.toml │ ├── LICENSE.md │ ├── README.md │ ├── doc │ │ └── kickstart.txt │ ├── init.lua │ └── lua │ │ ├── custom │ │ └── plugins │ │ │ └── init.lua │ │ └── kickstart │ │ ├── health.lua │ │ └── plugins │ │ ├── autopairs.lua │ │ ├── debug.lua │ │ ├── gitsigns.lua │ │ ├── indent_line.lua │ │ ├── lint.lua │ │ └── neo-tree.lua ├── sketchybar │ ├── bar.lua │ ├── colors.lua │ ├── default.lua │ ├── helpers │ │ ├── .gitignore │ │ ├── app_icons.lua │ │ ├── default_font.lua │ │ ├── event_providers │ │ │ ├── cpu_load │ │ │ │ ├── cpu.h │ │ │ │ ├── cpu_load.c │ │ │ │ └── makefile │ │ │ ├── makefile │ │ │ ├── network_load │ │ │ │ ├── makefile │ │ │ │ ├── network.h │ │ │ │ └── network_load.c │ │ │ └── sketchybar.h │ │ ├── init.lua │ │ ├── install.sh │ │ ├── makefile │ │ └── menus │ │ │ ├── makefile │ │ │ └── menus.c │ ├── icons.lua │ ├── init.lua │ ├── items │ │ ├── apple.lua │ │ ├── calendar.lua │ │ ├── init.lua │ │ ├── media.lua │ │ ├── menus.lua │ │ ├── spaces.lua │ │ └── widgets │ │ │ ├── battery.lua │ │ │ ├── cpu.lua │ │ │ ├── init.lua │ │ │ ├── volume.lua │ │ │ └── wifi.lua │ ├── settings.lua │ └── sketchybarrc ├── skhd │ └── skhdrc ├── vscode │ └── custom.css ├── yabai │ └── yabairc ├── yazi │ └── init.lua └── zed │ ├── embeddings │ ├── preview │ │ ├── embeddings_db │ │ ├── embeddings_db-shm │ │ └── embeddings_db-wal │ ├── semantic-index-db.0.mdb │ │ ├── data.mdb │ │ └── lock.mdb │ └── stable │ │ ├── embeddings_db │ │ ├── embeddings_db-shm │ │ └── embeddings_db-wal │ ├── keymap.json │ ├── prompts │ ├── index.json │ └── prompts-library-db.0.mdb │ │ ├── data.mdb │ │ └── lock.mdb │ └── settings.json └── wallpaprs ├── 5XYEZY.heic ├── 8HYNiz.heic ├── IMYnFy.heic ├── IfIq5L.heic ├── KPmPiX.heic ├── Pvbr9B.heic ├── U8lPE5.heic ├── UPJaJW.heic ├── b8iUXV.heic ├── c1hXo4.heic ├── eKclO8.heic ├── ge9s7h.heic ├── jBfX2w.heic ├── rr9JtZ.heic ├── rz3Jnd.heic └── y1MXj8.heic /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .tmp* 3 | oh-my-zsh/ 4 | -------------------------------------------------------------------------------- /2024-04-28.code-profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/2024-04-28.code-profile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dotfiles for macOS 2 | 3 | Migrated to https://github.com/tnixc/nix-config 4 | -------------------------------------------------------------------------------- /Stylus June 18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/Stylus June 18.json -------------------------------------------------------------------------------- /config/bat/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/bat/config -------------------------------------------------------------------------------- /config/bat/themes/tokyonight_night.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/bat/themes/tokyonight_night.tmTheme -------------------------------------------------------------------------------- /config/btop/btop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/btop/btop.conf -------------------------------------------------------------------------------- /config/btop/btop.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/btop/btop.log -------------------------------------------------------------------------------- /config/btop/themes/catppuccin_frappe.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/btop/themes/catppuccin_frappe.theme -------------------------------------------------------------------------------- /config/btop/themes/catppuccin_latte.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/btop/themes/catppuccin_latte.theme -------------------------------------------------------------------------------- /config/btop/themes/catppuccin_macchiato.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/btop/themes/catppuccin_macchiato.theme -------------------------------------------------------------------------------- /config/btop/themes/catppuccin_mocha.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/btop/themes/catppuccin_mocha.theme -------------------------------------------------------------------------------- /config/btop/themes/tokyo-night.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/btop/themes/tokyo-night.theme -------------------------------------------------------------------------------- /config/gh/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/gh/config.yml -------------------------------------------------------------------------------- /config/gh/hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/gh/hosts.yml -------------------------------------------------------------------------------- /config/iterm2/AppSupport: -------------------------------------------------------------------------------- 1 | /Users/tnixc/Library/Application Support/iTerm2 -------------------------------------------------------------------------------- /config/karabiner/automatic_backups/karabiner_20230106.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/karabiner/automatic_backups/karabiner_20230106.json -------------------------------------------------------------------------------- /config/karabiner/automatic_backups/karabiner_20230220.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/karabiner/automatic_backups/karabiner_20230220.json -------------------------------------------------------------------------------- /config/karabiner/automatic_backups/karabiner_20230318.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/karabiner/automatic_backups/karabiner_20230318.json -------------------------------------------------------------------------------- /config/karabiner/automatic_backups/karabiner_20240122.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/karabiner/automatic_backups/karabiner_20240122.json -------------------------------------------------------------------------------- /config/karabiner/automatic_backups/karabiner_20240127.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/karabiner/automatic_backups/karabiner_20240127.json -------------------------------------------------------------------------------- /config/karabiner/automatic_backups/karabiner_20240220.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/karabiner/automatic_backups/karabiner_20240220.json -------------------------------------------------------------------------------- /config/karabiner/automatic_backups/karabiner_20240221.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/karabiner/automatic_backups/karabiner_20240221.json -------------------------------------------------------------------------------- /config/karabiner/automatic_backups/karabiner_20240224.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/karabiner/automatic_backups/karabiner_20240224.json -------------------------------------------------------------------------------- /config/karabiner/automatic_backups/karabiner_20240226.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/karabiner/automatic_backups/karabiner_20240226.json -------------------------------------------------------------------------------- /config/karabiner/automatic_backups/karabiner_20240229.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/karabiner/automatic_backups/karabiner_20240229.json -------------------------------------------------------------------------------- /config/karabiner/automatic_backups/karabiner_20240403.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/karabiner/automatic_backups/karabiner_20240403.json -------------------------------------------------------------------------------- /config/karabiner/automatic_backups/karabiner_20240424.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/karabiner/automatic_backups/karabiner_20240424.json -------------------------------------------------------------------------------- /config/karabiner/karabiner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/karabiner/karabiner.json -------------------------------------------------------------------------------- /config/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/kitty/kitty.conf -------------------------------------------------------------------------------- /config/kitty/scroll_mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/kitty/scroll_mark.py -------------------------------------------------------------------------------- /config/kitty/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/kitty/search.py -------------------------------------------------------------------------------- /config/kitty/tab_bar.disabled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/kitty/tab_bar.disabled.py -------------------------------------------------------------------------------- /config/linearmouse/linearmouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/linearmouse/linearmouse.json -------------------------------------------------------------------------------- /config/lvim/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/lvim/config.lua -------------------------------------------------------------------------------- /config/lvim/lua/emmet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/lvim/lua/emmet.lua -------------------------------------------------------------------------------- /config/lvim/lua/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/lvim/lua/keymaps.lua -------------------------------------------------------------------------------- /config/lvim/lua/line.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/lvim/lua/line.lua -------------------------------------------------------------------------------- /config/lvim/lua/plugins.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/lvim/lua/plugins.lua -------------------------------------------------------------------------------- /config/nvim/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/nvim/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /config/nvim/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/nvim/.github/pull_request_template.md -------------------------------------------------------------------------------- /config/nvim/.github/workflows/stylua.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/nvim/.github/workflows/stylua.yml -------------------------------------------------------------------------------- /config/nvim/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/nvim/.gitignore -------------------------------------------------------------------------------- /config/nvim/.stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/nvim/.stylua.toml -------------------------------------------------------------------------------- /config/nvim/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/nvim/LICENSE.md -------------------------------------------------------------------------------- /config/nvim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/nvim/README.md -------------------------------------------------------------------------------- /config/nvim/doc/kickstart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/nvim/doc/kickstart.txt -------------------------------------------------------------------------------- /config/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/nvim/init.lua -------------------------------------------------------------------------------- /config/nvim/lua/custom/plugins/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/nvim/lua/custom/plugins/init.lua -------------------------------------------------------------------------------- /config/nvim/lua/kickstart/health.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/nvim/lua/kickstart/health.lua -------------------------------------------------------------------------------- /config/nvim/lua/kickstart/plugins/autopairs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/nvim/lua/kickstart/plugins/autopairs.lua -------------------------------------------------------------------------------- /config/nvim/lua/kickstart/plugins/debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/nvim/lua/kickstart/plugins/debug.lua -------------------------------------------------------------------------------- /config/nvim/lua/kickstart/plugins/gitsigns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/nvim/lua/kickstart/plugins/gitsigns.lua -------------------------------------------------------------------------------- /config/nvim/lua/kickstart/plugins/indent_line.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/nvim/lua/kickstart/plugins/indent_line.lua -------------------------------------------------------------------------------- /config/nvim/lua/kickstart/plugins/lint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/nvim/lua/kickstart/plugins/lint.lua -------------------------------------------------------------------------------- /config/nvim/lua/kickstart/plugins/neo-tree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/nvim/lua/kickstart/plugins/neo-tree.lua -------------------------------------------------------------------------------- /config/sketchybar/bar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/bar.lua -------------------------------------------------------------------------------- /config/sketchybar/colors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/colors.lua -------------------------------------------------------------------------------- /config/sketchybar/default.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/default.lua -------------------------------------------------------------------------------- /config/sketchybar/helpers/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | -------------------------------------------------------------------------------- /config/sketchybar/helpers/app_icons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/helpers/app_icons.lua -------------------------------------------------------------------------------- /config/sketchybar/helpers/default_font.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/helpers/default_font.lua -------------------------------------------------------------------------------- /config/sketchybar/helpers/event_providers/cpu_load/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/helpers/event_providers/cpu_load/cpu.h -------------------------------------------------------------------------------- /config/sketchybar/helpers/event_providers/cpu_load/cpu_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/helpers/event_providers/cpu_load/cpu_load.c -------------------------------------------------------------------------------- /config/sketchybar/helpers/event_providers/cpu_load/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/helpers/event_providers/cpu_load/makefile -------------------------------------------------------------------------------- /config/sketchybar/helpers/event_providers/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/helpers/event_providers/makefile -------------------------------------------------------------------------------- /config/sketchybar/helpers/event_providers/network_load/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/helpers/event_providers/network_load/makefile -------------------------------------------------------------------------------- /config/sketchybar/helpers/event_providers/network_load/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/helpers/event_providers/network_load/network.h -------------------------------------------------------------------------------- /config/sketchybar/helpers/event_providers/network_load/network_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/helpers/event_providers/network_load/network_load.c -------------------------------------------------------------------------------- /config/sketchybar/helpers/event_providers/sketchybar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/helpers/event_providers/sketchybar.h -------------------------------------------------------------------------------- /config/sketchybar/helpers/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/helpers/init.lua -------------------------------------------------------------------------------- /config/sketchybar/helpers/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/helpers/install.sh -------------------------------------------------------------------------------- /config/sketchybar/helpers/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/helpers/makefile -------------------------------------------------------------------------------- /config/sketchybar/helpers/menus/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/helpers/menus/makefile -------------------------------------------------------------------------------- /config/sketchybar/helpers/menus/menus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/helpers/menus/menus.c -------------------------------------------------------------------------------- /config/sketchybar/icons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/icons.lua -------------------------------------------------------------------------------- /config/sketchybar/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/init.lua -------------------------------------------------------------------------------- /config/sketchybar/items/apple.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/items/apple.lua -------------------------------------------------------------------------------- /config/sketchybar/items/calendar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/items/calendar.lua -------------------------------------------------------------------------------- /config/sketchybar/items/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/items/init.lua -------------------------------------------------------------------------------- /config/sketchybar/items/media.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/items/media.lua -------------------------------------------------------------------------------- /config/sketchybar/items/menus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/items/menus.lua -------------------------------------------------------------------------------- /config/sketchybar/items/spaces.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/items/spaces.lua -------------------------------------------------------------------------------- /config/sketchybar/items/widgets/battery.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/items/widgets/battery.lua -------------------------------------------------------------------------------- /config/sketchybar/items/widgets/cpu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/items/widgets/cpu.lua -------------------------------------------------------------------------------- /config/sketchybar/items/widgets/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/items/widgets/init.lua -------------------------------------------------------------------------------- /config/sketchybar/items/widgets/volume.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/items/widgets/volume.lua -------------------------------------------------------------------------------- /config/sketchybar/items/widgets/wifi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/items/widgets/wifi.lua -------------------------------------------------------------------------------- /config/sketchybar/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/settings.lua -------------------------------------------------------------------------------- /config/sketchybar/sketchybarrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/sketchybar/sketchybarrc -------------------------------------------------------------------------------- /config/skhd/skhdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/skhd/skhdrc -------------------------------------------------------------------------------- /config/vscode/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/vscode/custom.css -------------------------------------------------------------------------------- /config/yabai/yabairc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/yabai/yabairc -------------------------------------------------------------------------------- /config/yazi/init.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/zed/embeddings/preview/embeddings_db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/zed/embeddings/preview/embeddings_db -------------------------------------------------------------------------------- /config/zed/embeddings/preview/embeddings_db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/zed/embeddings/preview/embeddings_db-shm -------------------------------------------------------------------------------- /config/zed/embeddings/preview/embeddings_db-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/zed/embeddings/preview/embeddings_db-wal -------------------------------------------------------------------------------- /config/zed/embeddings/semantic-index-db.0.mdb/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/zed/embeddings/semantic-index-db.0.mdb/data.mdb -------------------------------------------------------------------------------- /config/zed/embeddings/semantic-index-db.0.mdb/lock.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/zed/embeddings/semantic-index-db.0.mdb/lock.mdb -------------------------------------------------------------------------------- /config/zed/embeddings/stable/embeddings_db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/zed/embeddings/stable/embeddings_db -------------------------------------------------------------------------------- /config/zed/embeddings/stable/embeddings_db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/zed/embeddings/stable/embeddings_db-shm -------------------------------------------------------------------------------- /config/zed/embeddings/stable/embeddings_db-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/zed/embeddings/stable/embeddings_db-wal -------------------------------------------------------------------------------- /config/zed/keymap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/zed/keymap.json -------------------------------------------------------------------------------- /config/zed/prompts/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/zed/prompts/index.json -------------------------------------------------------------------------------- /config/zed/prompts/prompts-library-db.0.mdb/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/zed/prompts/prompts-library-db.0.mdb/data.mdb -------------------------------------------------------------------------------- /config/zed/prompts/prompts-library-db.0.mdb/lock.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/zed/prompts/prompts-library-db.0.mdb/lock.mdb -------------------------------------------------------------------------------- /config/zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/config/zed/settings.json -------------------------------------------------------------------------------- /wallpaprs/5XYEZY.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/wallpaprs/5XYEZY.heic -------------------------------------------------------------------------------- /wallpaprs/8HYNiz.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/wallpaprs/8HYNiz.heic -------------------------------------------------------------------------------- /wallpaprs/IMYnFy.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/wallpaprs/IMYnFy.heic -------------------------------------------------------------------------------- /wallpaprs/IfIq5L.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/wallpaprs/IfIq5L.heic -------------------------------------------------------------------------------- /wallpaprs/KPmPiX.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/wallpaprs/KPmPiX.heic -------------------------------------------------------------------------------- /wallpaprs/Pvbr9B.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/wallpaprs/Pvbr9B.heic -------------------------------------------------------------------------------- /wallpaprs/U8lPE5.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/wallpaprs/U8lPE5.heic -------------------------------------------------------------------------------- /wallpaprs/UPJaJW.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/wallpaprs/UPJaJW.heic -------------------------------------------------------------------------------- /wallpaprs/b8iUXV.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/wallpaprs/b8iUXV.heic -------------------------------------------------------------------------------- /wallpaprs/c1hXo4.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/wallpaprs/c1hXo4.heic -------------------------------------------------------------------------------- /wallpaprs/eKclO8.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/wallpaprs/eKclO8.heic -------------------------------------------------------------------------------- /wallpaprs/ge9s7h.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/wallpaprs/ge9s7h.heic -------------------------------------------------------------------------------- /wallpaprs/jBfX2w.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/wallpaprs/jBfX2w.heic -------------------------------------------------------------------------------- /wallpaprs/rr9JtZ.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/wallpaprs/rr9JtZ.heic -------------------------------------------------------------------------------- /wallpaprs/rz3Jnd.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/wallpaprs/rz3Jnd.heic -------------------------------------------------------------------------------- /wallpaprs/y1MXj8.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/dots/HEAD/wallpaprs/y1MXj8.heic --------------------------------------------------------------------------------