set language to english in init.lua

This commit is contained in:
Kasper B. Graversen 2024-12-20 23:25:24 +01:00 committed by GitHub
parent de44f49101
commit e51fd19e14
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -93,6 +93,9 @@ vim.g.maplocalleader = ' '
-- Set to true if you have a Nerd Font installed and selected in the terminal -- Set to true if you have a Nerd Font installed and selected in the terminal
vim.g.have_nerd_font = false vim.g.have_nerd_font = false
-- Set language of Vim, only needed if you prefer english over the language of your operating system
vim.cmd("language en_US")
-- [[ Setting options ]] -- [[ Setting options ]]
-- See `:help vim.opt` -- See `:help vim.opt`
-- NOTE: You can change these options as you wish! -- NOTE: You can change these options as you wish!