-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
style: fix some typos #337
Conversation
Neat! Thanks for those! 😄 see https://github.com/MagicDuck/grug-far.nvim/blob/main/CONTRIBUTING.md |
48dbb26
to
26b784b
Compare
Awesome 👍🏻 I noticed the test snapshots failed on my system because Neovim wants to use Finnish (the |
scripts/minimal_init.lua
Outdated
@@ -1,6 +1,8 @@ | |||
-- Add current directory to 'runtimepath' to be able to use 'lua' files | |||
vim.cmd([[let &rtp.=','.getcwd()]]) | |||
|
|||
vim.cmd('language en_US') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Try this instead:
language en_US.UTF-8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll see if there's a better way to configure my system...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, should be fixed now !
Are you on nvim 0.10.1? Usually the attr cell difference is caused by different nvim version. |
I'm on I set my environment variable to en_US now, let's see if I can fix this. |
nice! Thanks again for your contribution! 😄 |
I found these using https://github.com/crate-ci/typos while I was looking at some implementation details. I think it's a quite safe change as long as you think it's worth including.