Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
misumisumi committed May 12, 2024
1 parent 521d8dc commit 792b16c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
9 changes: 8 additions & 1 deletion .typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,11 @@
hda = "hda"

[files]
extend-exclude = ["sops", "flake.lock"]
extend-exclude = [
"sops",
"flake.lock",
"CHANGELOG.md",
"apps/user/core/ranger/default.nix",
"apps/user/core/ranger/config/*",
"apps/user/full/ime/skk-config/libskk/rom-kana/default.json",
]
10 changes: 5 additions & 5 deletions apps/user/full/terminal/kitty.nix
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@
"ctrl+shift+up" = "scroll_line_up";
"opt+cmd+up" = "scroll_line_up";
"cmd+up" = "scroll_line_up";
"ctrl+shift+donw" = "scroll_line_donw";
"opt+cmd+donw" = "scroll_line_donw";
"cmd+donw" = "scroll_line_donw";
"ctrl+shift+down" = "scroll_line_down";
"opt+cmd+down" = "scroll_line_down";
"cmd+down" = "scroll_line_down";
"ctrl+shift+page_up" = "scroll_page_up";
"cmd+page_up" = "scroll_page_up";
"ctrl+shift+page_donw" = "scroll_page_donw";
"cmd+page_donw" = "scroll_page_donw";
"ctrl+shift+page_down" = "scroll_page_down";
"cmd+page_down" = "scroll_page_down";
"ctrl+shift+home" = "scroll_home";
"cmd+home" = "scroll_home";
"ctrl+shift+end" = "scroll_end";
Expand Down
4 changes: 2 additions & 2 deletions apps/user/full/wm/xmonad/conf/MyModules/Keymap.hs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import XMonad (
xK_v,
xK_r,
xK_e,
xK_commma,
xK_comma,
xK_period,
xK_Print
)
Expand Down Expand Up @@ -87,7 +87,7 @@ keymap = [
, ((modm .|. shiftMask, xK_s), spawn "rofi -show calc -modi calc -no-show-match -no-sort")
]

functionMap = [
functionMap = [
("<XF86AudioRaiseVolume>", spawn "pactl set-sink-volume @DEFAULT_SINK@ +5%")
, ("<XF86AudioLowerVolume>", spawn "pactl set-sink-volume @DEFAULT_SINK@ -5%")
, ("<XF86AudioMute>", spawn "pactl set-sink-mute @DEFAULT_SINK@ toggle")
Expand Down

0 comments on commit 792b16c

Please sign in to comment.