1
0
mirror of https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git synced 2025-09-15 09:45:58 +03:00
Files
linux-nixos-hyprland-config…/home/.config/helix/languages.toml
xnm 78d6258bfe feat: update hyprland, helix, bootloader and other configs
Changelog:
- autostart: remove hypridle from autostart script
- helix: add copilot LSP for Rust, JS/TS variants
- hyprland:
  - Refactor window rules with regex patterns
  - Update brightness controls for intel_backlight
  - Adjust pyprland scratchpad configurations
- bootloader:
  - Add i915 kernel modules
  - Disable initrd verbose logging
- greetd: update tuigreet command to use uwsm
- hyprland: enable hyprlock, hypridle services
- linux-kernel: add security hardening params
- ollama: add new LLM models (gemma3, deepcoder)
- utils: add sqlx-cli and kitty
- kitty: add config
- virtualisation:
  - Add lima, nerdctl
- vpn:
  - Enable mullvad VPN
  - Add mullvad and tor browsers
- stylus-themes: update to latest
2025-04-21 18:52:02 +03:00

65 lines
1.4 KiB
TOML

[language-server.hyprls]
command = "hyprls"
[[language]]
name = "hyprlang"
language-servers = [ "hyprls" ]
[language-server.emmet-lsp]
command = "emmet-language-server"
args = ["--stdio"]
[language-server.copilot]
command = "helix-gpt"
args = [
"--handler", "copilot",
"--copilotApiKey", "your_api_key", # FIXME
]
[language-server.lsp-ai]
command = "lsp-ai"
args = ["--stdio"]
[[language]]
name = "rust"
language-servers = [ "rust-analyzer", "copilot" ]
[language-server.rust-analyzer.config]
checkOnSave = { command = "clippy" }
[[language]]
name = "html"
language-servers = [ "emmet-lsp", "vscode-html-language-server" ]
[[language]]
name = "javascript"
auto-format = true
indent = { tab-width = 4, unit = " " }
language-servers = [ "typescript-language-server", "copilot" ]
[[language]]
name = "jsx"
auto-format = true
indent = { tab-width = 4, unit = " " }
language-servers = [ "typescript-language-server", "copilot" ]
[[language]]
name = "typescript"
auto-format = true
indent = { tab-width = 4, unit = " " }
language-servers = [ "typescript-language-server", "copilot" ]
[[language]]
name = "tsx"
auto-format = true
indent = { tab-width = 4, unit = " " }
language-servers = [ "typescript-language-server", "copilot" ]
[[language]]
name = "config"
scope = "source.conf"
file-types = [ "conf" ]
comment-token = "#"
roots = []
indent = { tab-width = 4, unit = " " }