1
0
mirror of https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git synced 2025-09-15 09:45:58 +03:00
Files
xnm 818c5e37a5 feat: add AI tools, improve configs, and update README
Changelog:
- Added AI tools and services (Ollama, SearXNG, Open WebUI)
- Updated README with AI tools section and improved formatting
- Added new Rust tools (`cargo-feature`, `cargo-features-manager`)
- Improved virtualisation config with `nvidia-docker`
- Added new work tools (`ssm-session-manager-plugin`, `redli`)
- Updated Helix, Qutebrowser, and Oterm configs
- Added Open WebUI and SearXNG config files
2025-02-15 21:14:22 +02:00

19 lines
555 B
Python

import catppuccin
# load your autoconfig, use this if the rest of your config is empty!
config.load_autoconfig()
# set the flavour you'd like to use
# valid options are 'mocha', 'macchiato', 'frappe', and 'latte'
catppuccin.setup(c, 'macchiato')
config.bind('<Up>', 'scroll up')
config.bind('<Down>', 'scroll down')
config.bind('<Left>', 'scroll left')
config.bind('<Right>', 'scroll right')
config.bind('<Shift+Left>', 'back')
config.bind('<Shift+Right>', 'forward')
config.bind('<Shift+Down>', 'tab-next')
config.bind('<Shift+Up>', 'tab-prev')