Skip to content

Commit 717cbcc

Browse files
committed
fix: fix typos and also add spell checking
1 parent 4df4d52 commit 717cbcc

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Semantic PR
1+
name: PR Checks
22
on:
33
pull_request_target:
44
types:
@@ -14,3 +14,9 @@ jobs:
1414
- uses: amannn/action-semantic-pull-request@v5
1515
env:
1616
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17+
typos:
18+
name: Spell Check
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v3
22+
- uses: crate-ci/typos@master

.typos.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[default.extend-words]
2+
noice = "noice"

lua/astrotheme/groups/plugins/which-key.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ local function callback(opts)
33
WhichKey = { fg = C.ui.cyan },
44
WhichKeyFloat = { bg = opts.popup and C.ui.popup or C.ui.base },
55
WhichKeyBorder = { fg = C.none },
6-
WhichKeySeperator = { fg = C.ui.none_text },
6+
WhichKeySeparator = { fg = C.ui.none_text },
77
WhichKeyDesc = { fg = C.ui.purple },
88
WhichKeyGroup = { fg = C.ui.blue },
99
WhichKeyValue = { fg = C.ui.active_text },

lua/astrotheme/groups/syntax.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- While unnecessary, we define all subgroups and their highlights
33
-- for completeness.
44
--
5-
-- Syntax group hierachry (e.g.):
5+
-- Syntax group hierarchy (e.g.):
66
-- - Constant (Primary group)
77
-- - String (Subgroup)
88
-- - Character (Subgroup)

lua/astrotheme/lib/util.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ function M.set_terminal_colors()
9595
vim.g.terminal_color_15 = C.term.bright_white
9696

9797
vim.g.terminal_color_background = C.term.background
98-
vim.g.terminal_color_foreground = C.term.forground
98+
vim.g.terminal_color_foreground = C.term.foreground
9999
end
100100

101101
return M

0 commit comments

Comments
 (0)