From e51fd19e147a0ea2af0877aef6a5183adbb23470 Mon Sep 17 00:00:00 2001 From: "Kasper B. Graversen" Date: Fri, 20 Dec 2024 23:25:24 +0100 Subject: [PATCH 1/2] set language to english in init.lua --- init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.lua b/init.lua index ee8fbc992e1..6d0e96fea72 100644 --- a/init.lua +++ b/init.lua @@ -93,6 +93,9 @@ vim.g.maplocalleader = ' ' -- Set to true if you have a Nerd Font installed and selected in the terminal 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 ]] -- See `:help vim.opt` -- NOTE: You can change these options as you wish! From f0d0da56117d17d8176159b15e3cddf59d36d3fb Mon Sep 17 00:00:00 2001 From: "Kasper B. Graversen" Date: Fri, 20 Dec 2024 23:49:37 +0100 Subject: [PATCH 2/2] Update init.lua --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 6d0e96fea72..690b9fd789c 100644 --- a/init.lua +++ b/init.lua @@ -94,7 +94,7 @@ vim.g.maplocalleader = ' ' 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") +vim.cmd 'language en_US' -- [[ Setting options ]] -- See `:help vim.opt`