From c37b9e5f00d51aa8625c51fe9fd3431fbb4c5ae4 Mon Sep 17 00:00:00 2001 From: m0ntagur Date: Tue, 28 Nov 2023 16:03:06 +0100 Subject: --- nvim/lua/options.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'nvim/lua/options.lua') diff --git a/nvim/lua/options.lua b/nvim/lua/options.lua index 1988661..5b431d9 100644 --- a/nvim/lua/options.lua +++ b/nvim/lua/options.lua @@ -1,5 +1,4 @@ local options = { - langmenu = 'en_US.UTF-8', list = false, backup = false, -- creates a backup file clipboard = "unnamedplus", -- allows neovim to access the system clipboard @@ -27,7 +26,7 @@ local options = { shiftwidth = 2, -- the number of spaces inserted for each indentation tabstop = 2, -- insert 2 spaces for a tab ⇥ cursorline = false, -- highlight the current line (disabled for now) - number = true, -- set numbered lines + number = false, -- set numbered lines relativenumber = false, -- set relative numbered lines numberwidth = 4, -- set number column width to 2 (default 4) wrap = false, -- display lines as one long lines @@ -42,4 +41,3 @@ end vim.wo.list = false vim.cmd 'set whichwrap+=<,>,[,],h,l' -vim.cmd 'lang en' -- cgit v1.3.1