31 lines
632 B
Cheetah
31 lines
632 B
Cheetah
{{- $tags := .chezmoi.config.data.tags -}}
|
|
|
|
hl.config({
|
|
input = {
|
|
kb_layout = "ultimatekeys",
|
|
kb_options = "caps:escape_shifted_capslock",
|
|
numlock_by_default = true,
|
|
repeat_rate = 25,
|
|
repeat_delay = 600,
|
|
follow_mouse = 0,
|
|
focus_on_close = 2,
|
|
|
|
mouse_refocus = true,
|
|
float_switch_override_focus = 2,
|
|
special_fallthrough = true,
|
|
touchpad = {
|
|
disable_while_typing = true,
|
|
scroll_factor = 1.0,
|
|
tap_to_click = true
|
|
}
|
|
}
|
|
})
|
|
|
|
{{- if (index $tags "desktop") }}
|
|
hl.device({
|
|
name = "Logitech Gaming Mouse G502",
|
|
sensitivity = 0.0,
|
|
accel_profile = "flat"
|
|
})
|
|
{{- end }}
|